From 12f1eb15ca3fed6310402847559a7c99d3c77847 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Sat, 2 Apr 2022 17:14:10 -0400 Subject: Programmatically apply new formatting to code Run this: for i in **/*.cc **/*.c **/*.h **/*.hh; do clang-format < $i >| $i.new && mv $i.new $i done --- libqpdf/Pl_Buffer.cc | 37 +++++++++++++------------------------ 1 file changed, 13 insertions(+), 24 deletions(-) (limited to 'libqpdf/Pl_Buffer.cc') diff --git a/libqpdf/Pl_Buffer.cc b/libqpdf/Pl_Buffer.cc index b38edc98..dba91e0f 100644 --- a/libqpdf/Pl_Buffer.cc +++ b/libqpdf/Pl_Buffer.cc @@ -1,10 +1,10 @@ #include -#include #include #include -#include +#include #include +#include Pl_Buffer::Members::Members() : ready(true), @@ -29,28 +29,24 @@ Pl_Buffer::~Pl_Buffer() void Pl_Buffer::write(unsigned char* buf, size_t len) { - if (this->m->data.get() == 0) - { + if (this->m->data.get() == 0) { this->m->data = make_pointer_holder(len); } size_t cur_size = this->m->data->getSize(); size_t left = cur_size - this->m->total_size; - if (left < len) - { + if (left < len) { size_t new_size = std::max(this->m->total_size + len, 2 * cur_size); auto b = make_pointer_holder(new_size); memcpy(b->getBuffer(), this->m->data->getBuffer(), this->m->total_size); this->m->data = b; } - if (len) - { + if (len) { memcpy(this->m->data->getBuffer() + this->m->total_size, buf, len); this->m->total_size += len; } this->m->ready = false; - if (getNext(true)) - { + if (getNext(true)) { getNext()->write(buf, len); } } @@ -59,8 +55,7 @@ void Pl_Buffer::finish() { this->m->ready = true; - if (getNext(true)) - { + if (getNext(true)) { getNext()->finish(); } } @@ -68,14 +63,12 @@ Pl_Buffer::finish() Buffer* Pl_Buffer::getBuffer() { - if (! this->m->ready) - { + if (!this->m->ready) { throw std::logic_error("Pl_Buffer::getBuffer() called when not ready"); } Buffer* b = new Buffer(this->m->total_size); - if (this->m->total_size > 0) - { + if (this->m->total_size > 0) { unsigned char* p = b->getBuffer(); memcpy(p, this->m->data->getBuffer(), this->m->total_size); } @@ -90,22 +83,18 @@ Pl_Buffer::getBufferSharedPointer() } void -Pl_Buffer::getMallocBuffer(unsigned char **buf, size_t* len) +Pl_Buffer::getMallocBuffer(unsigned char** buf, size_t* len) { - if (! this->m->ready) - { + if (!this->m->ready) { throw std::logic_error( "Pl_Buffer::getMallocBuffer() called when not ready"); } *len = this->m->total_size; - if (this->m->total_size > 0) - { + if (this->m->total_size > 0) { *buf = reinterpret_cast(malloc(this->m->total_size)); memcpy(*buf, this->m->data->getBuffer(), this->m->total_size); - } - else - { + } else { *buf = nullptr; } this->m = PointerHolder(new Members()); -- cgit v1.2.3-54-g00ecf