genode/repos/gems/src/lib/file/file.cc
2018-02-09 13:34:18 +01:00

68 lines
1.3 KiB
C++

/*
* \brief Utility for loading a file
* \author Norman Feske
* \date 2014-08-14
*/
/*
* Copyright (C) 2014-2017 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU Affero General Public License version 3.
*/
/* Genode includes */
#include <base/log.h>
/* gems includes */
#include <gems/file.h>
/* libc includes */
#include <libc/component.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <fcntl.h>
#include <errno.h>
static Genode::size_t file_size(char const *name)
{
struct stat s;
s.st_size = 0;
Libc::with_libc([&] () { stat(name, &s); });
return s.st_size;
}
File::File(char const *name, Genode::Allocator &alloc)
:
_alloc(alloc),
_file_size(file_size(name)),
_data(alloc.alloc(_file_size))
{
Libc::with_libc([&] () {
int const fd = open(name, O_RDONLY);
Genode::size_t remain = _file_size;
char *data = (char *)_data;
do {
int ret;
if ((ret = read(fd, data, remain)) < 0) {
Genode::error("reading from file \"", name, "\" failed (error ", errno, ")");
throw Reading_failed();
}
remain -= ret;
data += ret;
} while (remain > 0);
close(fd);
});
}
File::~File()
{
_alloc.free(_data, _file_size);
}