/subprojects/

libcamera/libcamera.git' href='/libcamera/libcamera.git/'>libcamera/libcamera.git
libcamera official repositorygit repository hosting on libcamera.org
summaryrefslogtreecommitdiff
path: root/include/libcamera/internal/file.h
blob: 9b6d011f5e9da9d7c0627a4871aabfcf47e73e1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
/* SPDX-License-Identifier: LGPL-2.1-or-later */
/*
 * Copyright (C) 2020, Google Inc.
 *
 * file.h - File I/O operations
 */
#ifndef __LIBCAMERA_INTERNAL_FILE_H__
#define __LIBCAMERA_INTERNAL_FILE_H__

#include <map>
#include <string>
#include <sys/types.h>

#include <libcamera/span.h>

namespace libcamera {

class File
{
public:
	enum MapFlag {
		MapNoOption = 0,
		MapPrivate = (1 << 0),
	};

	enum OpenMode {
		NotOpen = 0,
		ReadOnly = (1 << 0),
		WriteOnly = (1 << 1),
		ReadWrite = ReadOnly | WriteOnly,
	};

	File(const std::string &name);
	File();
	~File();

	File(const File &) = delete;
	File &operator=(const File &) = delete;

	const std::string &fileName() const { return name_; }
	void setFileName(const std::string &name);
	bool exists() const;

	bool open(OpenMode mode);
	bool isOpen() const { return fd_ != -1; }
	OpenMode openMode() const { return mode_; }
	void close();

	int error() const { return error_; }
	ssize_t size() const;

	off_t pos() const;
	off_t seek(off_t pos);