mbed library sources. Supersedes mbed-src.

Fork of mbed-dev by mbed official

Committer:
pmcorreia
Date:
Tue Oct 09 14:42:37 2018 +0000
Revision:
187:fa51feb62426
Parent:
184:08ed48f1de7f
Updated version to work with F446RE

Who changed what in which revision?

UserRevisionLine numberNew contents of line
<> 149:156823d33999 1 /* mbed Microcontroller Library
<> 149:156823d33999 2 * Copyright (c) 2006-2013 ARM Limited
<> 149:156823d33999 3 *
<> 149:156823d33999 4 * Licensed under the Apache License, Version 2.0 (the "License");
<> 149:156823d33999 5 * you may not use this file except in compliance with the License.
<> 149:156823d33999 6 * You may obtain a copy of the License at
<> 149:156823d33999 7 *
<> 149:156823d33999 8 * http://www.apache.org/licenses/LICENSE-2.0
<> 149:156823d33999 9 *
<> 149:156823d33999 10 * Unless required by applicable law or agreed to in writing, software
<> 149:156823d33999 11 * distributed under the License is distributed on an "AS IS" BASIS,
<> 149:156823d33999 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
<> 149:156823d33999 13 * See the License for the specific language governing permissions and
<> 149:156823d33999 14 * limitations under the License.
<> 149:156823d33999 15 */
<> 149:156823d33999 16 #ifndef MBED_CALLCHAIN_H
<> 149:156823d33999 17 #define MBED_CALLCHAIN_H
<> 149:156823d33999 18
<> 149:156823d33999 19 #include "platform/Callback.h"
<> 160:d5399cc887bb 20 #include "platform/mbed_toolchain.h"
AnnaBridge 168:9672193075cf 21 #include "platform/NonCopyable.h"
<> 149:156823d33999 22 #include <string.h>
<> 149:156823d33999 23
<> 149:156823d33999 24 namespace mbed {
AnnaBridge 178:79309dc6340a 25
AnnaBridge 178:79309dc6340a 26
AnnaBridge 178:79309dc6340a 27 typedef Callback<void()> *pFunctionPointer_t;
AnnaBridge 178:79309dc6340a 28 class CallChainLink;
AnnaBridge 178:79309dc6340a 29
<> 149:156823d33999 30 /** \addtogroup platform */
AnnaBridge 178:79309dc6340a 31 /** @{*/
AnnaBridge 178:79309dc6340a 32 /**
AnnaBridge 178:79309dc6340a 33 * \defgroup platform_CallChain CallChain class
AnnaBridge 178:79309dc6340a 34 * @{
AnnaBridge 178:79309dc6340a 35 */
<> 149:156823d33999 36
<> 149:156823d33999 37 /** Group one or more functions in an instance of a CallChain, then call them in
<> 149:156823d33999 38 * sequence using CallChain::call(). Used mostly by the interrupt chaining code,
<> 149:156823d33999 39 * but can be used for other purposes.
<> 149:156823d33999 40 *
AnnaBridge 184:08ed48f1de7f 41 * @deprecated Do not use this class. This class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 167:e84263d55307 42 * @note Synchronization level: Not protected
<> 149:156823d33999 43 *
<> 149:156823d33999 44 * Example:
<> 149:156823d33999 45 * @code
<> 149:156823d33999 46 * #include "mbed.h"
<> 149:156823d33999 47 *
<> 149:156823d33999 48 * CallChain chain;
<> 149:156823d33999 49 *
<> 149:156823d33999 50 * void first(void) {
<> 149:156823d33999 51 * printf("'first' function.\n");
<> 149:156823d33999 52 * }
<> 149:156823d33999 53 *
<> 149:156823d33999 54 * void second(void) {
<> 149:156823d33999 55 * printf("'second' function.\n");
<> 149:156823d33999 56 * }
<> 149:156823d33999 57 *
<> 149:156823d33999 58 * class Test {
<> 149:156823d33999 59 * public:
<> 149:156823d33999 60 * void f(void) {
<> 149:156823d33999 61 * printf("A::f (class member).\n");
<> 149:156823d33999 62 * }
<> 149:156823d33999 63 * };
<> 149:156823d33999 64 *
<> 149:156823d33999 65 * int main() {
<> 149:156823d33999 66 * Test test;
<> 149:156823d33999 67 *
<> 149:156823d33999 68 * chain.add(second);
<> 149:156823d33999 69 * chain.add_front(first);
<> 149:156823d33999 70 * chain.add(&test, &Test::f);
<> 149:156823d33999 71 * chain.call();
<> 149:156823d33999 72 * }
<> 149:156823d33999 73 * @endcode
<> 149:156823d33999 74 */
AnnaBridge 168:9672193075cf 75 class CallChain : private NonCopyable<CallChain> {
<> 149:156823d33999 76 public:
<> 149:156823d33999 77 /** Create an empty chain
AnnaBridge 184:08ed48f1de7f 78 * @deprecated
AnnaBridge 184:08ed48f1de7f 79 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
<> 149:156823d33999 80 *
<> 149:156823d33999 81 * @param size (optional) Initial size of the chain
<> 149:156823d33999 82 */
Anna Bridge 180:96ed750bd169 83 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 84 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 85 CallChain(int size = 4);
Anna Bridge 180:96ed750bd169 86
AnnaBridge 184:08ed48f1de7f 87 /** Create an empty chain
AnnaBridge 184:08ed48f1de7f 88 * @deprecated
AnnaBridge 184:08ed48f1de7f 89 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 90 */
Anna Bridge 180:96ed750bd169 91 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 92 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 93 virtual ~CallChain();
<> 149:156823d33999 94
<> 149:156823d33999 95 /** Add a function at the end of the chain
<> 149:156823d33999 96 *
AnnaBridge 184:08ed48f1de7f 97 * @deprecated
AnnaBridge 184:08ed48f1de7f 98 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 99 *
<> 149:156823d33999 100 * @param func A pointer to a void function
<> 149:156823d33999 101 *
<> 149:156823d33999 102 * @returns
<> 149:156823d33999 103 * The function object created for 'func'
<> 149:156823d33999 104 */
Anna Bridge 180:96ed750bd169 105 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 106 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 107 pFunctionPointer_t add(Callback<void()> func);
<> 149:156823d33999 108
<> 149:156823d33999 109 /** Add a function at the end of the chain
<> 149:156823d33999 110 *
<> 149:156823d33999 111 * @param obj pointer to the object to call the member function on
<> 149:156823d33999 112 * @param method pointer to the member function to be called
<> 149:156823d33999 113 *
<> 149:156823d33999 114 * @returns
<> 149:156823d33999 115 * The function object created for 'obj' and 'method'
<> 149:156823d33999 116 *
<> 149:156823d33999 117 * @deprecated
<> 149:156823d33999 118 * The add function does not support cv-qualifiers. Replaced by
<> 149:156823d33999 119 * add(callback(obj, method)).
<> 149:156823d33999 120 */
<> 149:156823d33999 121 template<typename T, typename M>
<> 149:156823d33999 122 MBED_DEPRECATED_SINCE("mbed-os-5.1",
<> 149:156823d33999 123 "The add function does not support cv-qualifiers. Replaced by "
<> 149:156823d33999 124 "add(callback(obj, method)).")
<> 149:156823d33999 125 pFunctionPointer_t add(T *obj, M method) {
<> 149:156823d33999 126 return add(callback(obj, method));
<> 149:156823d33999 127 }
<> 149:156823d33999 128
<> 149:156823d33999 129 /** Add a function at the beginning of the chain
AnnaBridge 184:08ed48f1de7f 130 * @deprecated
AnnaBridge 184:08ed48f1de7f 131 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 132 *
<> 149:156823d33999 133 *
<> 149:156823d33999 134 * @param func A pointer to a void function
<> 149:156823d33999 135 *
<> 149:156823d33999 136 * @returns
<> 149:156823d33999 137 * The function object created for 'func'
<> 149:156823d33999 138 */
Anna Bridge 180:96ed750bd169 139 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 140 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 141 pFunctionPointer_t add_front(Callback<void()> func);
<> 149:156823d33999 142
<> 149:156823d33999 143 /** Add a function at the beginning of the chain
<> 149:156823d33999 144 *
AnnaBridge 167:e84263d55307 145 * @param obj pointer to the object to call the member function on
AnnaBridge 167:e84263d55307 146 * @param method pointer to the member function to be called
<> 149:156823d33999 147 *
<> 149:156823d33999 148 * @returns
<> 149:156823d33999 149 * The function object created for 'tptr' and 'mptr'
<> 149:156823d33999 150 *
<> 149:156823d33999 151 * @deprecated
<> 149:156823d33999 152 * The add_front function does not support cv-qualifiers. Replaced by
<> 149:156823d33999 153 * add_front(callback(obj, method)).
<> 149:156823d33999 154 */
<> 149:156823d33999 155 template<typename T, typename M>
<> 149:156823d33999 156 MBED_DEPRECATED_SINCE("mbed-os-5.1",
<> 149:156823d33999 157 "The add_front function does not support cv-qualifiers. Replaced by "
<> 149:156823d33999 158 "add_front(callback(obj, method)).")
<> 149:156823d33999 159 pFunctionPointer_t add_front(T *obj, M method) {
<> 149:156823d33999 160 return add_front(callback(obj, method));
<> 149:156823d33999 161 }
<> 149:156823d33999 162
<> 149:156823d33999 163 /** Get the number of functions in the chain
AnnaBridge 184:08ed48f1de7f 164 * @deprecated
AnnaBridge 184:08ed48f1de7f 165 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 166 *
<> 149:156823d33999 167 */
Anna Bridge 180:96ed750bd169 168 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 169 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 170 int size() const;
<> 149:156823d33999 171
<> 149:156823d33999 172 /** Get a function object from the chain
AnnaBridge 184:08ed48f1de7f 173 * @deprecated
AnnaBridge 184:08ed48f1de7f 174 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
<> 149:156823d33999 175 *
<> 149:156823d33999 176 * @param i function object index
<> 149:156823d33999 177 *
<> 149:156823d33999 178 * @returns
<> 149:156823d33999 179 * The function object at position 'i' in the chain
<> 149:156823d33999 180 */
Anna Bridge 180:96ed750bd169 181 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 182 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 183 pFunctionPointer_t get(int i) const;
<> 149:156823d33999 184
<> 149:156823d33999 185 /** Look for a function object in the call chain
AnnaBridge 184:08ed48f1de7f 186 * @deprecated
AnnaBridge 184:08ed48f1de7f 187 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
<> 149:156823d33999 188 *
<> 149:156823d33999 189 * @param f the function object to search
<> 149:156823d33999 190 *
<> 149:156823d33999 191 * @returns
<> 149:156823d33999 192 * The index of the function object if found, -1 otherwise.
<> 149:156823d33999 193 */
Anna Bridge 180:96ed750bd169 194 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 195 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 196 int find(pFunctionPointer_t f) const;
<> 149:156823d33999 197
<> 149:156823d33999 198 /** Clear the call chain (remove all functions in the chain).
AnnaBridge 184:08ed48f1de7f 199 * @deprecated Do not use this function. This class is not part of the public API of mbed-os and is being removed in the future.
<> 149:156823d33999 200 */
Anna Bridge 180:96ed750bd169 201 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 202 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 203 void clear();
<> 149:156823d33999 204
<> 149:156823d33999 205 /** Remove a function object from the chain
AnnaBridge 184:08ed48f1de7f 206 * @deprecated
AnnaBridge 184:08ed48f1de7f 207 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
<> 149:156823d33999 208 *
<> 149:156823d33999 209 * @arg f the function object to remove
<> 149:156823d33999 210 *
<> 149:156823d33999 211 * @returns
<> 149:156823d33999 212 * true if the function object was found and removed, false otherwise.
<> 149:156823d33999 213 */
Anna Bridge 180:96ed750bd169 214 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 215 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 216 bool remove(pFunctionPointer_t f);
<> 149:156823d33999 217
<> 149:156823d33999 218 /** Call all the functions in the chain in sequence
AnnaBridge 184:08ed48f1de7f 219 * @deprecated
AnnaBridge 184:08ed48f1de7f 220 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 221 *
<> 149:156823d33999 222 */
Anna Bridge 180:96ed750bd169 223 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 224 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 225 void call();
<> 149:156823d33999 226
AnnaBridge 184:08ed48f1de7f 227 /**
AnnaBridge 184:08ed48f1de7f 228 * @deprecated
AnnaBridge 184:08ed48f1de7f 229 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 230 *
AnnaBridge 184:08ed48f1de7f 231 */
Anna Bridge 180:96ed750bd169 232 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 233 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 234 void operator ()(void) {
<> 149:156823d33999 235 call();
<> 149:156823d33999 236 }
Anna Bridge 180:96ed750bd169 237
AnnaBridge 184:08ed48f1de7f 238 /**
AnnaBridge 184:08ed48f1de7f 239 * @deprecated
AnnaBridge 184:08ed48f1de7f 240 * Do not use this function, this class is not part of the public API of mbed-os and is being removed in the future.
AnnaBridge 184:08ed48f1de7f 241 *
AnnaBridge 184:08ed48f1de7f 242 */
Anna Bridge 180:96ed750bd169 243 MBED_DEPRECATED_SINCE("mbed-os-5.6", "This class is not part of the "
Anna Bridge 180:96ed750bd169 244 "public API of mbed-os and is being removed in the future.")
<> 149:156823d33999 245 pFunctionPointer_t operator [](int i) const {
<> 149:156823d33999 246 return get(i);
<> 149:156823d33999 247 }
<> 149:156823d33999 248
<> 149:156823d33999 249 private:
<> 149:156823d33999 250 CallChainLink *_chain;
<> 149:156823d33999 251 };
<> 149:156823d33999 252
AnnaBridge 178:79309dc6340a 253 /**@}*/
AnnaBridge 178:79309dc6340a 254
AnnaBridge 178:79309dc6340a 255 /**@}*/
AnnaBridge 178:79309dc6340a 256
<> 149:156823d33999 257 } // namespace mbed
<> 149:156823d33999 258
<> 149:156823d33999 259 #endif
<> 149:156823d33999 260