blob: e41a7a2f5f769989b5268ccf47fb73b4de659320 [file] [log] [blame]
Alex Deymoaea4c1c2015-08-19 20:24:43 -07001//
2// Copyright (C) 2015 The Android Open Source Project
3//
4// Licensed under the Apache License, Version 2.0 (the "License");
5// you may not use this file except in compliance with the License.
6// You may obtain a copy of the License at
7//
8// http://www.apache.org/licenses/LICENSE-2.0
9//
10// Unless required by applicable law or agreed to in writing, software
11// distributed under the License is distributed on an "AS IS" BASIS,
12// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13// See the License for the specific language governing permissions and
14// limitations under the License.
15//
Alex Deymo2b19cfb2015-03-26 00:35:07 -070016
17#ifndef UPDATE_ENGINE_PAYLOAD_GENERATOR_FAKE_FILESYSTEM_H_
18#define UPDATE_ENGINE_PAYLOAD_GENERATOR_FAKE_FILESYSTEM_H_
19
20// A fake filesystem interface implementation allowing the user to add arbitrary
21// files/metadata.
22
23#include "update_engine/payload_generator/filesystem_interface.h"
24
25#include <string>
26#include <vector>
27
28#include "update_engine/update_metadata.pb.h"
29
30namespace chromeos_update_engine {
31
32class FakeFilesystem : public FilesystemInterface {
33 public:
34 FakeFilesystem(uint64_t block_size, uint64_t block_count);
35 virtual ~FakeFilesystem() = default;
36
37 // FilesystemInterface overrides.
38 size_t GetBlockSize() const override;
39 size_t GetBlockCount() const override;
40 bool GetFiles(std::vector<File>* files) const override;
Alex Vakulenko3f39d5c2015-10-13 09:27:13 -070041 bool LoadSettings(brillo::KeyValueStore* store) const override;
Alex Deymo2b19cfb2015-03-26 00:35:07 -070042
43 // Fake methods.
44
45 // Add a file to the list of fake files.
Chih-Hung Hsieh5c6bb1d2016-07-27 13:33:15 -070046 void AddFile(const std::string& filename, const std::vector<Extent>& extents);
Alex Deymo2b19cfb2015-03-26 00:35:07 -070047
Alex Deymo2e9533b2015-06-26 20:57:06 -070048 // Sets the PAYLOAD_MINOR_VERSION key stored by LoadSettings(). Use a negative
49 // value to produce an error in LoadSettings().
Amin Hassani232f8f92019-01-14 16:15:31 -080050 void SetMinorVersion(int minor_version) { minor_version_ = minor_version; }
Alex Deymo2e9533b2015-06-26 20:57:06 -070051
Alex Deymo2b19cfb2015-03-26 00:35:07 -070052 private:
53 FakeFilesystem() = default;
54
55 uint64_t block_size_;
56 uint64_t block_count_;
Alex Deymo2e9533b2015-06-26 20:57:06 -070057 int minor_version_{-1};
Alex Deymo2b19cfb2015-03-26 00:35:07 -070058
59 std::vector<File> files_;
60
61 DISALLOW_COPY_AND_ASSIGN(FakeFilesystem);
62};
63
64} // namespace chromeos_update_engine
65
66#endif // UPDATE_ENGINE_PAYLOAD_GENERATOR_FAKE_FILESYSTEM_H_