With the buffer allocator in use it's possible to cache the dmabuf memory mappings when starting the camera instead of mapping and unmapping them each time. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
89 lines
1.9 KiB
C++
89 lines
1.9 KiB
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* buffer_writer.cpp - Buffer writer
|
|
*/
|
|
|
|
#include <fcntl.h>
|
|
#include <iomanip>
|
|
#include <iostream>
|
|
#include <sstream>
|
|
#include <string.h>
|
|
#include <sys/mman.h>
|
|
#include <unistd.h>
|
|
|
|
#include "buffer_writer.h"
|
|
|
|
using namespace libcamera;
|
|
|
|
BufferWriter::BufferWriter(const std::string &pattern)
|
|
: pattern_(pattern)
|
|
{
|
|
}
|
|
|
|
BufferWriter::~BufferWriter()
|
|
{
|
|
for (auto &iter : mappedBuffers_) {
|
|
void *memory = iter.second.first;
|
|
unsigned int length = iter.second.second;
|
|
munmap(memory, length);
|
|
}
|
|
mappedBuffers_.clear();
|
|
}
|
|
|
|
void BufferWriter::mapBuffer(FrameBuffer *buffer)
|
|
{
|
|
for (const FrameBuffer::Plane &plane : buffer->planes()) {
|
|
void *memory = mmap(NULL, plane.length, PROT_READ, MAP_SHARED,
|
|
plane.fd.fd(), 0);
|
|
|
|
mappedBuffers_[plane.fd.fd()] =
|
|
std::make_pair(memory, plane.length);
|
|
}
|
|
}
|
|
|
|
int BufferWriter::write(FrameBuffer *buffer, const std::string &streamName)
|
|
{
|
|
std::string filename;
|
|
size_t pos;
|
|
int fd, ret = 0;
|
|
|
|
filename = pattern_;
|
|
pos = filename.find_first_of('#');
|
|
if (pos != std::string::npos) {
|
|
std::stringstream ss;
|
|
ss << streamName << "-" << std::setw(6)
|
|
<< std::setfill('0') << buffer->metadata().sequence;
|
|
filename.replace(pos, 1, ss.str());
|
|
}
|
|
|
|
fd = open(filename.c_str(), O_CREAT | O_WRONLY |
|
|
(pos == std::string::npos ? O_APPEND : O_TRUNC),
|
|
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP | S_IROTH | S_IWOTH);
|
|
if (fd == -1)
|
|
return -errno;
|
|
|
|
for (const FrameBuffer::Plane &plane : buffer->planes()) {
|
|
void *data = mappedBuffers_[plane.fd.fd()].first;
|
|
unsigned int length = plane.length;
|
|
|
|
ret = ::write(fd, data, length);
|
|
if (ret < 0) {
|
|
ret = -errno;
|
|
std::cerr << "write error: " << strerror(-ret)
|
|
<< std::endl;
|
|
break;
|
|
} else if (ret != (int)length) {
|
|
std::cerr << "write error: only " << ret
|
|
<< " bytes written instead of "
|
|
<< length << std::endl;
|
|
break;
|
|
}
|
|
}
|
|
|
|
close(fd);
|
|
|
|
return ret;
|
|
}
|