![]() |
Member function as Task
I'm using the Task class in WPILib to poll for IMU data at the moment, and in doing so I've discovered that I can't cast member functions to a FUNCPTR or a VOIDFUNCPTR. To solve this, I created a static class which holds an IMU instance and has a static function that calls the instance's update method. That did it, but now I have more methods that I'd like to call in the background. I figured that creating a class for every member function is not a very extendable solution, so my question is, how can I create Tasks with member functions? Or am I missing something and can cast a member function to a FUNCPTR? Do I even need to cast functions to FUNCPTRs? The online examples I saw casted functions to FUNCPTRs, and directly passing functions as arguments throws a compile-time error.
|
Re: Member function as Task
The technique is to create a static function in your class. The first parameter to your function is this. In the function, dispatch to the member function using the this pointer. This technique is a kind of a thunk.
Code:
class MyClass |
Re: Member function as Task
Thanks, that works.
|
Re: Member function as Task
You can use a member function but you'll have to pass an instance to Task. I've looked in the Task source and it should work, since it forwards all of its arguments to thread. Thread internally detects if you gave a member function pointer and uses the first argument as the instance to call the function from.
Code:
class MyClass |
Re: Member function as Task
Quote:
You can do this in 1 line. Code:
::std::thread my_thread(::std::bind(&MyClass::MyMethod, this, arg1, arg2));Code:
::std::thread my_thread; |
| All times are GMT -5. The time now is 09:17 AM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi