The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
AnnaBridge
Date:
Wed Feb 20 20:53:29 2019 +0000
Revision:
172:65be27845400
Parent:
171:3a7713b1edbc
mbed library release version 165

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AnnaBridge 156:ff21514d8981 1 /* mbed Microcontroller Library
AnnaBridge 156:ff21514d8981 2 * Copyright (c) 2006-2013 ARM Limited
AnnaBridge 172:65be27845400 3 * SPDX-License-Identifier: Apache-2.0
AnnaBridge 156:ff21514d8981 4 *
AnnaBridge 156:ff21514d8981 5 * Licensed under the Apache License, Version 2.0 (the "License");
AnnaBridge 156:ff21514d8981 6 * you may not use this file except in compliance with the License.
AnnaBridge 156:ff21514d8981 7 * You may obtain a copy of the License at
AnnaBridge 156:ff21514d8981 8 *
AnnaBridge 156:ff21514d8981 9 * http://www.apache.org/licenses/LICENSE-2.0
AnnaBridge 156:ff21514d8981 10 *
AnnaBridge 156:ff21514d8981 11 * Unless required by applicable law or agreed to in writing, software
AnnaBridge 156:ff21514d8981 12 * distributed under the License is distributed on an "AS IS" BASIS,
AnnaBridge 156:ff21514d8981 13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
AnnaBridge 156:ff21514d8981 14 * See the License for the specific language governing permissions and
AnnaBridge 156:ff21514d8981 15 * limitations under the License.
AnnaBridge 156:ff21514d8981 16 */
AnnaBridge 156:ff21514d8981 17 #ifndef MBED_FILEBASE_H
AnnaBridge 156:ff21514d8981 18 #define MBED_FILEBASE_H
AnnaBridge 156:ff21514d8981 19
AnnaBridge 156:ff21514d8981 20 typedef int FILEHANDLE;
AnnaBridge 156:ff21514d8981 21
AnnaBridge 156:ff21514d8981 22 #include "platform/platform.h"
AnnaBridge 156:ff21514d8981 23 #include "platform/SingletonPtr.h"
AnnaBridge 156:ff21514d8981 24 #include "platform/PlatformMutex.h"
AnnaBridge 156:ff21514d8981 25 #include "platform/NonCopyable.h"
AnnaBridge 156:ff21514d8981 26
AnnaBridge 156:ff21514d8981 27 namespace mbed {
AnnaBridge 170:e95d10626187 28
AnnaBridge 156:ff21514d8981 29 typedef enum {
AnnaBridge 156:ff21514d8981 30 FilePathType,
AnnaBridge 156:ff21514d8981 31 FileSystemPathType
AnnaBridge 156:ff21514d8981 32 } PathType;
AnnaBridge 156:ff21514d8981 33
AnnaBridge 158:1c57384330a6 34 /** \addtogroup platform */
AnnaBridge 158:1c57384330a6 35 /** @{*/
AnnaBridge 156:ff21514d8981 36 /**
AnnaBridge 158:1c57384330a6 37 * \defgroup platform_FileBase FileBase class
AnnaBridge 158:1c57384330a6 38 * @{
AnnaBridge 156:ff21514d8981 39 */
AnnaBridge 158:1c57384330a6 40 /** Class FileBase
AnnaBridge 158:1c57384330a6 41 *
AnnaBridge 158:1c57384330a6 42 */
AnnaBridge 170:e95d10626187 43
AnnaBridge 156:ff21514d8981 44 class FileBase : private NonCopyable<FileBase> {
AnnaBridge 156:ff21514d8981 45 public:
AnnaBridge 156:ff21514d8981 46 FileBase(const char *name, PathType t);
AnnaBridge 156:ff21514d8981 47 virtual ~FileBase();
AnnaBridge 156:ff21514d8981 48
AnnaBridge 170:e95d10626187 49 const char *getName(void);
AnnaBridge 156:ff21514d8981 50 PathType getPathType(void);
AnnaBridge 156:ff21514d8981 51
AnnaBridge 156:ff21514d8981 52 static FileBase *lookup(const char *name, unsigned int len);
AnnaBridge 156:ff21514d8981 53
AnnaBridge 156:ff21514d8981 54 static FileBase *get(int n);
AnnaBridge 156:ff21514d8981 55
AnnaBridge 171:3a7713b1edbc 56 void set_as_default();
AnnaBridge 171:3a7713b1edbc 57
AnnaBridge 156:ff21514d8981 58 private:
AnnaBridge 156:ff21514d8981 59 static FileBase *_head;
AnnaBridge 171:3a7713b1edbc 60 static FileBase *_default;
AnnaBridge 156:ff21514d8981 61 static SingletonPtr<PlatformMutex> _mutex;
AnnaBridge 156:ff21514d8981 62
AnnaBridge 156:ff21514d8981 63 FileBase *_next;
AnnaBridge 170:e95d10626187 64 const char *const _name;
AnnaBridge 156:ff21514d8981 65 const PathType _path_type;
AnnaBridge 156:ff21514d8981 66 };
AnnaBridge 156:ff21514d8981 67
AnnaBridge 158:1c57384330a6 68 /**@}*/
AnnaBridge 158:1c57384330a6 69
AnnaBridge 158:1c57384330a6 70 /**@}*/
AnnaBridge 158:1c57384330a6 71
AnnaBridge 156:ff21514d8981 72 } // namespace mbed
AnnaBridge 156:ff21514d8981 73
AnnaBridge 156:ff21514d8981 74 #endif
AnnaBridge 156:ff21514d8981 75