kaylin0 2020-01-17
有个需求需要将二进制istream上传到s3上暂存,但苦于没能直接找到接口,官方提供的设置数据块的接口如下:
<<
或>>
函数,需要使用std::stringstream::read
和std::stringstream::write
函数。std::shared_ptr<Aws::StringStream> input_data = Aws::MakeShared<Aws::StringStream>(""); input_data->write(buffer.data(),srcSize); S3ClientWrapper *client = new S3ClientWrapper(); std::string endpoint = ""; ngmp::common::aws_client_configuration_info_struct config; client->Init(config); std::string errinfo; Aws::S3::S3Errors error_code; bool res = client->PutObject("bucket","object-name",input_data,errinfo, error_code,10);
上面的代码包含了一部分aws sdk的封装代码,仅供参考。