mbed library sources. Supersedes mbed-src.

Dependents:   Nucleo_Hello_Encoder BLE_iBeaconScan AM1805_DEMO DISCO-F429ZI_ExportTemplate1 ... more

Committer:
AnnaBridge
Date:
Wed Jun 21 17:46:44 2017 +0100
Revision:
167:e84263d55307
Child:
168:9672193075cf
This updates the lib to the mbed lib v 145

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 167:e84263d55307 1 /* mbed Microcontroller Library
AnnaBridge 167:e84263d55307 2 * Copyright (c) 2006-2013 ARM Limited
AnnaBridge 167:e84263d55307 3 *
AnnaBridge 167:e84263d55307 4 * Licensed under the Apache License, Version 2.0 (the "License");
AnnaBridge 167:e84263d55307 5 * you may not use this file except in compliance with the License.
AnnaBridge 167:e84263d55307 6 * You may obtain a copy of the License at
AnnaBridge 167:e84263d55307 7 *
AnnaBridge 167:e84263d55307 8 * http://www.apache.org/licenses/LICENSE-2.0
AnnaBridge 167:e84263d55307 9 *
AnnaBridge 167:e84263d55307 10 * Unless required by applicable law or agreed to in writing, software
AnnaBridge 167:e84263d55307 11 * distributed under the License is distributed on an "AS IS" BASIS,
AnnaBridge 167:e84263d55307 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AnnaBridge 167:e84263d55307 13 * See the License for the specific language governing permissions and
AnnaBridge 167:e84263d55307 14 * limitations under the License.
AnnaBridge 167:e84263d55307 15 */
AnnaBridge 167:e84263d55307 16 #ifndef MBED_FILESYSTEMLIKE_H
AnnaBridge 167:e84263d55307 17 #define MBED_FILESYSTEMLIKE_H
AnnaBridge 167:e84263d55307 18
AnnaBridge 167:e84263d55307 19 #include "platform/platform.h"
AnnaBridge 167:e84263d55307 20
AnnaBridge 167:e84263d55307 21 #include "platform/FileSystemHandle.h"
AnnaBridge 167:e84263d55307 22 #include "platform/FileHandle.h"
AnnaBridge 167:e84263d55307 23 #include "platform/DirHandle.h"
AnnaBridge 167:e84263d55307 24
AnnaBridge 167:e84263d55307 25 namespace mbed {
AnnaBridge 167:e84263d55307 26 /** \addtogroup platform */
AnnaBridge 167:e84263d55307 27
AnnaBridge 167:e84263d55307 28
AnnaBridge 167:e84263d55307 29 /** A filesystem-like object is one that can be used to open file-like
AnnaBridge 167:e84263d55307 30 * objects though it by fopen("/name/filename", mode)
AnnaBridge 167:e84263d55307 31 *
AnnaBridge 167:e84263d55307 32 * Implementations must define at least open (the default definitions
AnnaBridge 167:e84263d55307 33 * of the rest of the functions just return error values).
AnnaBridge 167:e84263d55307 34 *
AnnaBridge 167:e84263d55307 35 * @note Synchronization level: Set by subclass
AnnaBridge 167:e84263d55307 36 * @ingroup platform
AnnaBridge 167:e84263d55307 37 */
AnnaBridge 167:e84263d55307 38 class FileSystemLike : public FileSystemHandle, public FileBase {
AnnaBridge 167:e84263d55307 39 public:
AnnaBridge 167:e84263d55307 40 /** FileSystemLike lifetime
AnnaBridge 167:e84263d55307 41 */
AnnaBridge 167:e84263d55307 42 FileSystemLike(const char *name = NULL) : FileBase(name, FileSystemPathType) {}
AnnaBridge 167:e84263d55307 43 virtual ~FileSystemLike() {}
AnnaBridge 167:e84263d55307 44
AnnaBridge 167:e84263d55307 45 // Inherited functions with name conflicts
AnnaBridge 167:e84263d55307 46 using FileSystemHandle::open;
AnnaBridge 167:e84263d55307 47
AnnaBridge 167:e84263d55307 48 /** Open a file on the filesystem
AnnaBridge 167:e84263d55307 49 *
AnnaBridge 167:e84263d55307 50 * @param path The name of the file to open
AnnaBridge 167:e84263d55307 51 * @param flags The flags to open the file in, one of O_RDONLY, O_WRONLY, O_RDWR,
AnnaBridge 167:e84263d55307 52 * bitwise or'd with one of O_CREAT, O_TRUNC, O_APPEND
AnnaBridge 167:e84263d55307 53 * @return A file handle on success, NULL on failure
AnnaBridge 167:e84263d55307 54 * @deprecated Replaced by `int open(FileHandle **, ...)` for propagating error codes
AnnaBridge 167:e84263d55307 55 */
AnnaBridge 167:e84263d55307 56 MBED_DEPRECATED_SINCE("mbed-os-5.5",
AnnaBridge 167:e84263d55307 57 "Replaced by `int open(FileHandle **, ...)` for propagating error codes")
AnnaBridge 167:e84263d55307 58 FileHandle *open(const char *path, int flags)
AnnaBridge 167:e84263d55307 59 {
AnnaBridge 167:e84263d55307 60 FileHandle *file;
AnnaBridge 167:e84263d55307 61 int err = open(&file, path, flags);
AnnaBridge 167:e84263d55307 62 return err ? NULL : file;
AnnaBridge 167:e84263d55307 63 }
AnnaBridge 167:e84263d55307 64
AnnaBridge 167:e84263d55307 65 /** Open a directory on the filesystem
AnnaBridge 167:e84263d55307 66 *
AnnaBridge 167:e84263d55307 67 * @param path Name of the directory to open
AnnaBridge 167:e84263d55307 68 * @return A directory handle on success, NULL on failure
AnnaBridge 167:e84263d55307 69 * @deprecated Replaced by `int open(DirHandle **, ...)` for propagating error codes
AnnaBridge 167:e84263d55307 70 */
AnnaBridge 167:e84263d55307 71 MBED_DEPRECATED_SINCE("mbed-os-5.5",
AnnaBridge 167:e84263d55307 72 "Replaced by `int open(DirHandle **, ...)` for propagating error codes")
AnnaBridge 167:e84263d55307 73 DirHandle *opendir(const char *path)
AnnaBridge 167:e84263d55307 74 {
AnnaBridge 167:e84263d55307 75 DirHandle *dir;
AnnaBridge 167:e84263d55307 76 int err = open(&dir, path);
AnnaBridge 167:e84263d55307 77 return err ? NULL : dir;
AnnaBridge 167:e84263d55307 78 }
AnnaBridge 167:e84263d55307 79 };
AnnaBridge 167:e84263d55307 80
AnnaBridge 167:e84263d55307 81
AnnaBridge 167:e84263d55307 82 } // namespace mbed
AnnaBridge 167:e84263d55307 83
AnnaBridge 167:e84263d55307 84 #endif