libcamera: file: Use Flags<> class for map flags

Use the newly introduced Flags<> class to store a bitfield of
File::MapFlag in a type-safe way.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
Laurent Pinchart
2020-07-25 02:17:48 +03:00
parent f7c6b1228b
commit 49862904f6
2 changed files with 10 additions and 2 deletions
+4 -1
View File
@@ -15,6 +15,7 @@
#include <libcamera/base/private.h>
#include <libcamera/base/class.h>
#include <libcamera/base/flags.h>
#include <libcamera/base/span.h>
namespace libcamera {
@@ -27,6 +28,8 @@ public:
MapPrivate = (1 << 0),
};
using MapFlags = Flags<MapFlag>;
enum OpenMode {
NotOpen = 0,
ReadOnly = (1 << 0),
@@ -57,7 +60,7 @@ public:
ssize_t write(const Span<const uint8_t> &data);
Span<uint8_t> map(off_t offset = 0, ssize_t size = -1,
MapFlag flags = MapNoOption);
MapFlags flags = MapNoOption);
bool unmap(uint8_t *addr);
static bool exists(const std::string &name);