1 // Copyright 2023 Google LLC
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //      http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #include "file_system_wrapper_impl.hpp"
16 
17 #include <fstream>
18 #include <system_error>
19 
20 namespace google
21 {
22 namespace ipmi
23 {
24 namespace fs = std::filesystem;
25 
exists(const fs::path & path,std::error_code & ec) const26 bool FileSystemWrapper::exists(const fs::path& path, std::error_code& ec) const
27 {
28     return fs::exists(path, ec);
29 }
30 
rename(const fs::path & oldPath,const fs::path & newPath,std::error_code & ec) const31 void FileSystemWrapper::rename(const fs::path& oldPath, const fs::path& newPath,
32                                std::error_code& ec) const
33 {
34     fs::rename(oldPath, newPath, ec);
35 }
36 
create(const char * path) const37 void FileSystemWrapper::create(const char* path) const
38 {
39     std::ofstream ofs;
40     ofs.open(path, std::ofstream::out);
41     ofs.close();
42 }
43 } // namespace ipmi
44 } // namespace google
45