buffer.cpp
Go to the documentation of this file.
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2008, Willow Garage, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of Willow Garage, Inc. nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 ********************************************************************/
34 
35 #include <stdlib.h>
36 #include <assert.h>
37 #include <utility>
38 
39 #include "rosbag/buffer.h"
40 
41 //#include <ros/ros.h>
42 
43 namespace rosbag {
44 
45 Buffer::Buffer() : buffer_(NULL), capacity_(0), size_(0) { }
46 
48  free(buffer_);
49 }
50 
51 uint8_t* Buffer::getData() { return buffer_; }
52 uint32_t Buffer::getCapacity() const { return capacity_; }
53 uint32_t Buffer::getSize() const { return size_; }
54 
55 void Buffer::setSize(uint32_t size) {
56  size_ = size;
57  ensureCapacity(size);
58 }
59 
60 void Buffer::ensureCapacity(uint32_t capacity) {
61  if (capacity <= capacity_)
62  return;
63 
64  if (capacity_ == 0)
65  capacity_ = capacity;
66  else {
67  while (capacity_ < capacity)
68  capacity_ *= 2;
69  }
70 
71  buffer_ = (uint8_t*) realloc(buffer_, capacity_);
72  assert(buffer_);
73 }
74 
75 void Buffer::swap(Buffer& other) {
76  using std::swap;
77  swap(buffer_, other.buffer_);
78  swap(capacity_, other.capacity_);
79  swap(size_, other.size_);
80 }
81 
82 } // namespace rosbag
uint32_t capacity_
Definition: buffer.h:63
uint8_t * getData()
Definition: buffer.cpp:51
void swap(Bag &a, Bag &b)
Definition: bag.h:653
uint8_t * buffer_
Definition: buffer.h:62
uint32_t size_
Definition: buffer.h:64
void swap(Buffer &other)
Definition: buffer.cpp:75
uint32_t getSize() const
Definition: buffer.cpp:53
Definition: bag.h:78
uint32_t getCapacity() const
Definition: buffer.cpp:52
void setSize(uint32_t size)
Definition: buffer.cpp:55
void ensureCapacity(uint32_t capacity)
Definition: buffer.cpp:60


rosbag_storage
Author(s):
autogenerated on Sun Feb 3 2019 03:29:47