140 lines
3.2 KiB
C
140 lines
3.2 KiB
C
/*
|
|
file.c - file handling
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Christian Thaeter <ct@pipapo.org>
|
|
|
|
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
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
*/
|
|
|
|
#include "include/logging.h"
|
|
#include "lib/mutex.h"
|
|
#include "lib/safeclib.h"
|
|
|
|
#include "backend/file.h"
|
|
#include "backend/filehandlecache.h"
|
|
|
|
#include <limits.h>
|
|
#include <unistd.h>
|
|
|
|
//NOBUG_DEFINE_FLAG_PARENT (file, file_all);
|
|
|
|
LUMIERA_ERROR_DEFINE (FILE_CHANGED, "File changed unexpected");
|
|
LUMIERA_ERROR_DEFINE (FILE_NOCHUNKSIZE, "Chunksize not set");
|
|
|
|
|
|
LumieraFile
|
|
lumiera_file_init (LumieraFile self, const char* name, int flags)
|
|
{
|
|
TRACE (file_dbg);
|
|
|
|
if (self)
|
|
{
|
|
llist_init (&self->node);
|
|
|
|
if (!(self->descriptor = lumiera_filedescriptor_acquire (name, flags, &self->node)))
|
|
return NULL;
|
|
|
|
self->name = lumiera_strndup (name, PATH_MAX);
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
LumieraFile
|
|
lumiera_file_destroy (LumieraFile self)
|
|
{
|
|
TRACE (file_dbg);
|
|
|
|
lumiera_filedescriptor_release (self->descriptor, self->name, &self->node);
|
|
lumiera_free (self->name);
|
|
return self;
|
|
}
|
|
|
|
|
|
LumieraFile
|
|
lumiera_file_new (const char* name, int flags)
|
|
{
|
|
TRACE (file_dbg);
|
|
TRACE (file, "opening file '%s' with flags '%x'", name, flags);
|
|
|
|
LumieraFile self = lumiera_malloc (sizeof (lumiera_file));
|
|
if (!lumiera_file_init (self, name, flags))
|
|
{
|
|
lumiera_free (self);
|
|
self = NULL;
|
|
}
|
|
|
|
return self;
|
|
}
|
|
|
|
void
|
|
lumiera_file_delete (LumieraFile self)
|
|
{
|
|
TRACE (file_dbg);
|
|
TRACE (file, "close file '%s'", self->name);
|
|
lumiera_free (lumiera_file_destroy (self));
|
|
}
|
|
|
|
|
|
int
|
|
lumiera_file_handle_acquire (LumieraFile self)
|
|
{
|
|
TRACE (file_dbg);
|
|
REQUIRE (self);
|
|
REQUIRE (self->descriptor);
|
|
REQUIRE (lumiera_fhcache);
|
|
|
|
return lumiera_filedescriptor_handle_acquire (self->descriptor);
|
|
}
|
|
|
|
|
|
void
|
|
lumiera_file_handle_release (LumieraFile self)
|
|
{
|
|
TRACE (file_dbg);
|
|
REQUIRE (self);
|
|
REQUIRE (self->descriptor);
|
|
REQUIRE (lumiera_fhcache);
|
|
|
|
return lumiera_filedescriptor_handle_release (self->descriptor);
|
|
}
|
|
|
|
|
|
size_t
|
|
lumiera_file_chunksize_set (LumieraFile self, size_t chunksize)
|
|
{
|
|
if (chunksize && !self->descriptor->mmapings)
|
|
self->descriptor->mmapings = lumiera_mmapings_new (self, chunksize);
|
|
|
|
return self->descriptor->mmapings->chunksize;
|
|
}
|
|
|
|
|
|
size_t
|
|
lumiera_file_chunksize_get (LumieraFile self)
|
|
{
|
|
return self->descriptor->mmapings->chunksize;
|
|
}
|
|
|
|
|
|
LumieraMMapings
|
|
lumiera_file_mmapings (LumieraFile self)
|
|
{
|
|
if (!self->descriptor->mmapings)
|
|
LUMIERA_ERROR_SET (file, FILE_NOCHUNKSIZE, lumiera_filedescriptor_name (self->descriptor));
|
|
|
|
return self->descriptor->mmapings;
|
|
}
|