summaryrefslogtreecommitdiffstats
path: root/src/rgw/rgw_putobj.cc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* RGW - Make sure editor settings are correct for all filesDaniel Gryniewicz2019-08-191-1/+1
| | | | Signed-off-by: Daniel Gryniewicz <dang@redhat.com>
* rgw: clean-up -- insure C++ source code files contain editor directivesJ. Eric Ivancich2018-12-111-0/+1
| | | | | | | | | | Most, although not all, source code files have a comment on the first two lines describing the C++ formatting conventions used. This commit adds that directive to the files lacking it. Also, vertical whitespace was made more consistent. Note: this only touches files specifically for RGW. Signed-off-by: J. Eric Ivancich <ivancich@redhat.com>
* rgw: add rgw::putobj::StripeProcessorCasey Bodley2018-10-151-0/+48
| | | | | | | a pipe that stripes data over multiple objects according to an abstract StripeGenerator Signed-off-by: Casey Bodley <cbodley@redhat.com>
* rgw: add rgw::putobj::ChunkProcessor and testCasey Bodley2018-10-151-0/+50
ChunkProcessor turns the input stream into a series of discrete chunks before forwarding to the wrapped DataProcessor Signed-off-by: Casey Bodley <cbodley@redhat.com>