mbed-os
Fork of mbed-os by
features/unsupported/rpc/RPCFunction.cpp@1:3deb71413561, 2017-07-20 (annotated)
- Committer:
- xuaner
- Date:
- Thu Jul 20 14:26:57 2017 +0000
- Revision:
- 1:3deb71413561
- Parent:
- 0:f269e3021894
mbed_os
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
elessair | 0:f269e3021894 | 1 | /* mbed Microcontroller Library |
elessair | 0:f269e3021894 | 2 | * Copyright (c) 2006-2013 ARM Limited |
elessair | 0:f269e3021894 | 3 | * |
elessair | 0:f269e3021894 | 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
elessair | 0:f269e3021894 | 5 | * you may not use this file except in compliance with the License. |
elessair | 0:f269e3021894 | 6 | * You may obtain a copy of the License at |
elessair | 0:f269e3021894 | 7 | * |
elessair | 0:f269e3021894 | 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
elessair | 0:f269e3021894 | 9 | * |
elessair | 0:f269e3021894 | 10 | * Unless required by applicable law or agreed to in writing, software |
elessair | 0:f269e3021894 | 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
elessair | 0:f269e3021894 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
elessair | 0:f269e3021894 | 13 | * See the License for the specific language governing permissions and |
elessair | 0:f269e3021894 | 14 | * limitations under the License. |
elessair | 0:f269e3021894 | 15 | */ |
elessair | 0:f269e3021894 | 16 | #include "RPCFunction.h" |
elessair | 0:f269e3021894 | 17 | |
elessair | 0:f269e3021894 | 18 | namespace mbed { |
elessair | 0:f269e3021894 | 19 | |
elessair | 0:f269e3021894 | 20 | //Custom rpc method caller for execute so that the string will not be delimited by anything |
elessair | 0:f269e3021894 | 21 | void rpc_method_caller_run(RPC *this_ptr, Arguments *arguments, Reply *result) { |
elessair | 0:f269e3021894 | 22 | ((static_cast<RPCFunction*>(this_ptr))->run)(arguments, result); |
elessair | 0:f269e3021894 | 23 | } |
elessair | 0:f269e3021894 | 24 | |
elessair | 0:f269e3021894 | 25 | RPCFunction::RPCFunction(void (*f)(Arguments*, Reply*), const char* name) : RPC(name) { |
elessair | 0:f269e3021894 | 26 | _ftr = f; |
elessair | 0:f269e3021894 | 27 | } |
elessair | 0:f269e3021894 | 28 | |
elessair | 0:f269e3021894 | 29 | //Just run the attached function using the string thats in private memory - or just using null values, |
elessair | 0:f269e3021894 | 30 | void RPCFunction::run(Arguments* args, Reply* r) { |
elessair | 0:f269e3021894 | 31 | (*_ftr)(args, r); |
elessair | 0:f269e3021894 | 32 | } |
elessair | 0:f269e3021894 | 33 | |
elessair | 0:f269e3021894 | 34 | const rpc_method *RPCFunction::get_rpc_methods() { |
elessair | 0:f269e3021894 | 35 | static const rpc_method rpc_methods[] = { |
elessair | 0:f269e3021894 | 36 | {"run", rpc_method_caller_run }, //Run using custom caller, all characters accepted in string |
elessair | 0:f269e3021894 | 37 | RPC_METHOD_SUPER(RPC) |
elessair | 0:f269e3021894 | 38 | }; |
elessair | 0:f269e3021894 | 39 | return rpc_methods; |
elessair | 0:f269e3021894 | 40 | } |
elessair | 0:f269e3021894 | 41 | |
elessair | 0:f269e3021894 | 42 | } |