2014-04-07 14:15:40 +00:00
|
|
|
/*
|
|
|
|
* \brief Representation of an open file
|
|
|
|
* \author Norman Feske
|
|
|
|
* \date 2011-02-17
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2017-02-20 12:23:52 +00:00
|
|
|
* Copyright (C) 2011-2017 Genode Labs GmbH
|
2014-04-07 14:15:40 +00:00
|
|
|
*
|
|
|
|
* This file is part of the Genode OS framework, which is distributed
|
2017-02-20 12:23:52 +00:00
|
|
|
* under the terms of the GNU Affero General Public License version 3.
|
2014-04-07 14:15:40 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _INCLUDE__VFS__VFS_HANDLE_H_
|
|
|
|
#define _INCLUDE__VFS__VFS_HANDLE_H_
|
|
|
|
|
|
|
|
#include <vfs/directory_service.h>
|
|
|
|
|
2017-02-01 20:07:14 +00:00
|
|
|
namespace Vfs{
|
|
|
|
class Vfs_handle;
|
|
|
|
class File_io_service;
|
2018-03-31 14:50:49 +00:00
|
|
|
class File_system;
|
|
|
|
class Vfs_watch_handle;
|
2017-02-01 20:07:14 +00:00
|
|
|
}
|
2014-04-07 14:15:40 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Vfs::Vfs_handle
|
|
|
|
{
|
|
|
|
private:
|
|
|
|
|
|
|
|
Directory_service &_ds;
|
|
|
|
File_io_service &_fs;
|
2016-03-30 13:24:19 +00:00
|
|
|
Genode::Allocator &_alloc;
|
2014-04-07 14:15:40 +00:00
|
|
|
int _status_flags;
|
2016-03-30 13:24:19 +00:00
|
|
|
file_size _seek = 0;
|
2014-04-07 14:15:40 +00:00
|
|
|
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
/*
|
|
|
|
* Noncopyable
|
|
|
|
*/
|
|
|
|
Vfs_handle(Vfs_handle const &);
|
|
|
|
Vfs_handle &operator = (Vfs_handle const &);
|
|
|
|
|
2014-04-07 14:15:40 +00:00
|
|
|
public:
|
|
|
|
|
2017-02-01 20:07:14 +00:00
|
|
|
/**
|
|
|
|
* Opaque handle context
|
|
|
|
*/
|
2017-08-15 18:51:53 +00:00
|
|
|
struct Context : List<Context>::Element { };
|
2017-02-01 20:07:14 +00:00
|
|
|
|
|
|
|
Context *context = nullptr;
|
|
|
|
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
class Guard
|
2015-01-27 16:04:52 +00:00
|
|
|
{
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
private:
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Noncopyable
|
|
|
|
*/
|
|
|
|
Guard(Guard const &);
|
|
|
|
Guard &operator = (Guard const &);
|
|
|
|
|
|
|
|
Vfs_handle * const _handle;
|
|
|
|
|
|
|
|
public:
|
2015-01-27 16:04:52 +00:00
|
|
|
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
Guard(Vfs_handle *handle) : _handle(handle) { }
|
2015-01-27 16:04:52 +00:00
|
|
|
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
~Guard()
|
|
|
|
{
|
|
|
|
if (_handle)
|
2018-04-23 07:25:51 +00:00
|
|
|
_handle->close();
|
Follow practices suggested by "Effective C++"
The patch adjust the code of the base, base-<kernel>, and os repository.
To adapt existing components to fix violations of the best practices
suggested by "Effective C++" as reported by the -Weffc++ compiler
argument. The changes follow the patterns outlined below:
* A class with virtual functions can no longer publicly inherit base
classed without a vtable. The inherited object may either be moved
to a member variable, or inherited privately. The latter would be
used for classes that inherit 'List::Element' or 'Avl_node'. In order
to enable the 'List' and 'Avl_tree' to access the meta data, the
'List' must become a friend.
* Instead of adding a virtual destructor to abstract base classes,
we inherit the new 'Interface' class, which contains a virtual
destructor. This way, single-line abstract base classes can stay
as compact as they are now. The 'Interface' utility resides in
base/include/util/interface.h.
* With the new warnings enabled, all member variables must be explicitly
initialized. Basic types may be initialized with '='. All other types
are initialized with braces '{ ... }' or as class initializers. If
basic types and non-basic types appear in a row, it is nice to only
use the brace syntax (also for basic types) and align the braces.
* If a class contains pointers as members, it must now also provide a
copy constructor and assignment operator. In the most cases, one
would make them private, effectively disallowing the objects to be
copied. Unfortunately, this warning cannot be fixed be inheriting
our existing 'Noncopyable' class (the compiler fails to detect that
the inheriting class cannot be copied and still gives the error).
For now, we have to manually add declarations for both the copy
constructor and assignment operator as private class members. Those
declarations should be prepended with a comment like this:
/*
* Noncopyable
*/
Thread(Thread const &);
Thread &operator = (Thread const &);
In the future, we should revisit these places and try to replace
the pointers with references. In the presence of at least one
reference member, the compiler would no longer implicitly generate
a copy constructor. So we could remove the manual declaration.
Issue #465
2017-12-21 14:42:15 +00:00
|
|
|
}
|
2015-01-27 16:04:52 +00:00
|
|
|
};
|
|
|
|
|
2014-04-07 14:15:40 +00:00
|
|
|
enum { STATUS_RDONLY = 0, STATUS_WRONLY = 1, STATUS_RDWR = 2 };
|
|
|
|
|
2016-03-30 13:24:19 +00:00
|
|
|
Vfs_handle(Directory_service &ds,
|
|
|
|
File_io_service &fs,
|
|
|
|
Genode::Allocator &alloc,
|
|
|
|
int status_flags)
|
2014-04-07 14:15:40 +00:00
|
|
|
:
|
2016-03-30 13:24:19 +00:00
|
|
|
_ds(ds), _fs(fs),
|
|
|
|
_alloc(alloc),
|
|
|
|
_status_flags(status_flags)
|
2014-04-07 14:15:40 +00:00
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual ~Vfs_handle() { }
|
|
|
|
|
|
|
|
Directory_service &ds() { return _ds; }
|
|
|
|
File_io_service &fs() { return _fs; }
|
2016-03-30 13:24:19 +00:00
|
|
|
Allocator &alloc() { return _alloc; }
|
2014-04-07 14:15:40 +00:00
|
|
|
|
|
|
|
int status_flags() const { return _status_flags; }
|
|
|
|
|
2015-11-05 10:07:19 +00:00
|
|
|
void status_flags(int flags) { _status_flags = flags; }
|
|
|
|
|
2014-04-07 14:15:40 +00:00
|
|
|
/**
|
|
|
|
* Return seek offset in bytes
|
|
|
|
*/
|
2014-09-09 12:32:31 +00:00
|
|
|
file_size seek() const { return _seek; }
|
2014-04-07 14:15:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Set seek offset in bytes
|
|
|
|
*/
|
2014-09-09 12:32:31 +00:00
|
|
|
void seek(file_offset seek) { _seek = seek; }
|
2014-04-07 14:15:40 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Advance seek offset by 'incr' bytes
|
|
|
|
*/
|
2014-09-09 12:32:31 +00:00
|
|
|
void advance_seek(file_size incr) { _seek += incr; }
|
2018-04-23 07:25:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close handle at backing file-system.
|
|
|
|
*
|
|
|
|
* This leaves the handle pointer in an invalid and unsafe state.
|
|
|
|
*/
|
|
|
|
inline void close() { ds().close(this); }
|
2014-04-07 14:15:40 +00:00
|
|
|
};
|
|
|
|
|
2016-03-30 13:24:19 +00:00
|
|
|
|
2018-03-31 14:50:49 +00:00
|
|
|
class Vfs::Vfs_watch_handle
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Opaque handle context
|
|
|
|
*/
|
|
|
|
struct Context : List<Context>::Element { };
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
2018-04-23 07:25:51 +00:00
|
|
|
Directory_service &_fs;
|
2018-03-31 14:50:49 +00:00
|
|
|
Genode::Allocator &_alloc;
|
|
|
|
Context *_context = nullptr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Noncopyable
|
|
|
|
*/
|
|
|
|
Vfs_watch_handle(Vfs_watch_handle const &);
|
|
|
|
Vfs_watch_handle &operator = (Vfs_watch_handle const &);
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2018-04-23 07:25:51 +00:00
|
|
|
Vfs_watch_handle(Directory_service &fs,
|
2018-03-31 14:50:49 +00:00
|
|
|
Genode::Allocator &alloc)
|
|
|
|
:
|
|
|
|
_fs(fs), _alloc(alloc)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
virtual ~Vfs_watch_handle() { }
|
|
|
|
|
2018-04-23 07:25:51 +00:00
|
|
|
Directory_service &fs() { return _fs; }
|
2018-03-31 14:50:49 +00:00
|
|
|
Allocator &alloc() { return _alloc; }
|
|
|
|
virtual void context(Context *context) { _context = context; }
|
|
|
|
Context *context() const { return _context; }
|
2018-04-23 07:25:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Close handle at backing file-system.
|
|
|
|
*
|
|
|
|
* This leaves the handle pointer in an invalid and unsafe state.
|
|
|
|
*/
|
|
|
|
inline void close() { fs().close(this); }
|
2018-03-31 14:50:49 +00:00
|
|
|
};
|
|
|
|
|
2014-04-07 14:15:40 +00:00
|
|
|
#endif /* _INCLUDE__VFS__VFS_HANDLE_H_ */
|