2013-03-17 07:45:21 +08:00
|
|
|
/*
|
|
|
|
* ZoneMinder flexible memory class implementation, $Date$, $Revision$
|
|
|
|
* Copyright (C) 2001-2008 Philip Coombes
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
2016-12-26 23:23:16 +08:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2013-03-17 07:45:21 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "zm_buffer.h"
|
|
|
|
|
2021-03-04 06:48:02 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
|
2020-11-21 22:15:36 +08:00
|
|
|
unsigned int Buffer::assign(const unsigned char *pStorage, unsigned int pSize) {
|
|
|
|
if ( mAllocation < pSize ) {
|
2016-04-04 22:11:48 +08:00
|
|
|
delete[] mStorage;
|
|
|
|
mAllocation = pSize;
|
|
|
|
mHead = mStorage = new unsigned char[pSize];
|
|
|
|
}
|
|
|
|
mSize = pSize;
|
2020-11-21 22:15:36 +08:00
|
|
|
memcpy(mStorage, pStorage, mSize);
|
2016-04-04 22:11:48 +08:00
|
|
|
mHead = mStorage;
|
|
|
|
mTail = mHead + mSize;
|
2020-11-21 22:15:36 +08:00
|
|
|
return mSize;
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
|
|
|
|
2020-11-21 22:15:36 +08:00
|
|
|
unsigned int Buffer::expand(unsigned int count) {
|
2016-04-04 22:11:48 +08:00
|
|
|
int spare = mAllocation - mSize;
|
|
|
|
int headSpace = mHead - mStorage;
|
|
|
|
int tailSpace = spare - headSpace;
|
|
|
|
int width = mTail - mHead;
|
2021-03-26 00:52:41 +08:00
|
|
|
if ( spare >= static_cast<int>(count) ) {
|
|
|
|
// There is enough space in the allocation might need to shift everything over though
|
|
|
|
//
|
2020-11-22 05:58:22 +08:00
|
|
|
if ( tailSpace < static_cast<int>(count) ) {
|
2021-03-26 00:52:41 +08:00
|
|
|
// if there is extra space at the head, shift everything over
|
2020-11-21 22:15:36 +08:00
|
|
|
memmove(mStorage, mHead, mSize);
|
2016-04-04 22:11:48 +08:00
|
|
|
mHead = mStorage;
|
|
|
|
mTail = mHead + width;
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
2020-11-21 22:15:36 +08:00
|
|
|
} else {
|
2016-04-04 22:11:48 +08:00
|
|
|
mAllocation += count;
|
|
|
|
unsigned char *newStorage = new unsigned char[mAllocation];
|
2020-11-21 22:15:36 +08:00
|
|
|
if ( mStorage ) {
|
|
|
|
memcpy(newStorage, mHead, mSize);
|
2016-04-04 22:11:48 +08:00
|
|
|
delete[] mStorage;
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
2016-04-04 22:11:48 +08:00
|
|
|
mStorage = newStorage;
|
|
|
|
mHead = mStorage;
|
|
|
|
mTail = mHead + width;
|
|
|
|
}
|
2020-11-21 22:15:36 +08:00
|
|
|
return mSize;
|
2013-03-17 07:45:21 +08:00
|
|
|
}
|
2015-07-07 03:57:06 +08:00
|
|
|
|
2020-11-21 22:15:36 +08:00
|
|
|
int Buffer::read_into(int sd, unsigned int bytes) {
|
2016-04-04 22:11:48 +08:00
|
|
|
// Make sure there is enough space
|
|
|
|
this->expand(bytes);
|
2021-04-17 23:32:04 +08:00
|
|
|
Debug(3, "Reading %u btes", bytes);
|
|
|
|
int bytes_read = ::read(sd, mTail, bytes);
|
|
|
|
if (bytes_read > 0) {
|
2016-04-04 22:11:48 +08:00
|
|
|
mTail += bytes_read;
|
|
|
|
mSize += bytes_read;
|
|
|
|
}
|
|
|
|
return bytes_read;
|
2015-07-07 03:57:06 +08:00
|
|
|
}
|
2021-03-06 03:12:44 +08:00
|
|
|
|
2021-06-13 23:18:28 +08:00
|
|
|
int Buffer::read_into(int sd, unsigned int bytes, Microseconds timeout) {
|
2021-03-06 03:12:44 +08:00
|
|
|
fd_set set;
|
|
|
|
FD_ZERO(&set); /* clear the set */
|
|
|
|
FD_SET(sd, &set); /* add our file descriptor to the set */
|
2021-06-13 23:18:28 +08:00
|
|
|
timeval timeout_tv = zm::chrono::duration_cast<timeval>(timeout);
|
|
|
|
|
|
|
|
int rv = select(sd + 1, &set, nullptr, nullptr, &timeout_tv);
|
2021-03-06 03:12:44 +08:00
|
|
|
if (rv == -1) {
|
|
|
|
Error("Error %d %s from select", errno, strerror(errno));
|
|
|
|
return rv;
|
|
|
|
} else if (rv == 0) {
|
2021-03-26 00:52:41 +08:00
|
|
|
Debug(1, "timeout"); /* a timeout occured */
|
2021-03-06 03:12:44 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2021-06-13 23:18:28 +08:00
|
|
|
|
2021-03-26 00:52:41 +08:00
|
|
|
return read_into(sd, bytes);
|
2021-03-06 03:12:44 +08:00
|
|
|
}
|