blob: 45d17b1bb38efb1e3d73e9495cdaef995e977ea7 [file] [log] [blame]
Jed Estepf1fc48c2015-12-15 16:04:53 -08001/*
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 */
16
17/*
18 * Provide a series of proxy functions for basic file accessors.
19 * The behavior of these functions can be changed to return different
20 * errors under a variety of conditions.
21 */
22
23#ifndef _UPDATER_OTA_IO_H_
24#define _UPDATER_OTA_IO_H_
25
26#include <stdio.h>
27#include <sys/stat.h>
28
Tao Bao3dc14cb2016-11-22 11:37:13 -080029#include <memory>
30
Tao Bao6e02ea92016-11-17 11:24:07 -080031#include <android-base/unique_fd.h>
32
Jed Estepff6df892015-12-15 16:04:53 -080033#define OTAIO_CACHE_FNAME "/cache/saved.file"
34
35void ota_set_fault_files();
36
Jed Estepf1fc48c2015-12-15 16:04:53 -080037int ota_open(const char* path, int oflags);
38
39int ota_open(const char* path, int oflags, mode_t mode);
40
41FILE* ota_fopen(const char* filename, const char* mode);
42
43int ota_close(int fd);
44
45int ota_fclose(FILE* fh);
46
47size_t ota_fread(void* ptr, size_t size, size_t nitems, FILE* stream);
48
49ssize_t ota_read(int fd, void* buf, size_t nbyte);
50
51size_t ota_fwrite(const void* ptr, size_t size, size_t count, FILE* stream);
52
53ssize_t ota_write(int fd, const void* buf, size_t nbyte);
54
55int ota_fsync(int fd);
56
Tao Bao6e02ea92016-11-17 11:24:07 -080057struct OtaCloser {
58 static void Close(int fd) {
59 ota_close(fd);
60 }
61};
62
63using unique_fd = android::base::unique_fd_impl<OtaCloser>;
64
Tao Bao3dc14cb2016-11-22 11:37:13 -080065int ota_close(unique_fd& fd);
66
67int ota_fclose(std::unique_ptr<FILE, int (*)(FILE*)>& fh);
68
Jed Estepf1fc48c2015-12-15 16:04:53 -080069#endif