Hello, I have a situation where I need to design a library for
multi-thread application, each thread does some work in a client
supplied std::ptr_fun(free_function) or a functor.
Now since it's a multi-threaded application, naturally I want the call
back functor to be created on a per thread basis.
Suppose my thread is so defined
template <typename servlet_type>
struct worker_thread{
void operator()(){
serverlet_type()(int x);
}
};
Now I find it a problem to actually pass a free function to the worker
thread.
void serv(int x){
}
typedef
std::pointer_to_unary_function<int, voidserverlet_type;
worker_thread<serverlet_typethr;
Now, thr does not actually know that I want to use serv to perform per
thread work.
I can pass the free function ptr all the way to worker_thread
constructor but this design conflicts with a functor callback. If a
functor object is passed all the way to worker_thread, the library is
not thread safe.
I am using boost::thread to build this library. But that should be
irrelevant. My problem is that when using a container with
free_function/functor, I run into this problem. I checked STL
implementation of various algorithms, they are all stateless free
functions which made it possible to accept both std::ptr_fun or a user
defined functor.
Any suggestion on this issue? Thank you very much.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ] 5 2478
Fei Liu wrote:
Hello, I have a situation where I need to design a library for
multi-thread application, each thread does some work in a client
supplied std::ptr_fun(free_function) or a functor.
Now since it's a multi-threaded application, naturally I want the call
back functor to be created on a per thread basis.
Suppose my thread is so defined
template <typename servlet_type>
struct worker_thread{
void operator()(){
serverlet_type()(int x);
}
};
Now I find it a problem to actually pass a free function to the worker
thread.
void serv(int x){
}
typedef
std::pointer_to_unary_function<int, voidserverlet_type;
worker_thread<serverlet_typethr;
Now, thr does not actually know that I want to use serv to perform per
thread work.
I can pass the free function ptr all the way to worker_thread
constructor but this design conflicts with a functor callback. If a
functor object is passed all the way to worker_thread, the library is
not thread safe.
I am using boost::thread to build this library. But that should be
irrelevant. My problem is that when using a container with
free_function/functor, I run into this problem. I checked STL
implementation of various algorithms, they are all stateless free
functions which made it possible to accept both std::ptr_fun or a user
defined functor.
Any suggestion on this issue? Thank you very much.
reference from Boost.Thread and its samples
It always take boost::function0<voidto construct a thread,
then as a client programmer, we can provide stateless or stateful
functor as adapter to the boost::function0<voidtype.
In this way the thread constructor can be simple and bring more
flexibility to the client programmer.
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
On Aug 17, 10:14 pm, Fei Liu <fei...@aepnetworks.comwrote:
template <typename servlet_type>
struct worker_thread{
void operator()(){
serverlet_type()(int x);
}
That code doesn't compile, and doesn't even make sense to me.
I can pass the free function ptr all the way to worker_thread
constructor but this design conflicts with a functor callback. If a
functor object is passed all the way to worker_thread, the library is
not thread safe.
A function pointer is just a special case of a functor.
template<typename F>
void do_some_work_with_functor_or_function_pointer(cons t F& f) (or
pass by value, for some reason some crazy people seem to like that)
{
// whatever
f();
}
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]
Barry wrote:
Fei Liu wrote:
>Hello, I have a situation where I need to design a library for multi-thread application, each thread does some work in a client supplied std::ptr_fun(free_function) or a functor.
Now since it's a multi-threaded application, naturally I want the call back functor to be created on a per thread basis.
Suppose my thread is so defined
template <typename servlet_type> struct worker_thread{ void operator()(){ serverlet_type()(int x); } };
Now I find it a problem to actually pass a free function to the worker thread.
void serv(int x){ }
typedef std::pointer_to_unary_function<int, voidserverlet_type;
worker_thread<serverlet_typethr;
Now, thr does not actually know that I want to use serv to perform per thread work.
I can pass the free function ptr all the way to worker_thread constructor but this design conflicts with a functor callback. If a functor object is passed all the way to worker_thread, the library is not thread safe.
I am using boost::thread to build this library. But that should be irrelevant. My problem is that when using a container with free_function/functor, I run into this problem. I checked STL implementation of various algorithms, they are all stateless free functions which made it possible to accept both std::ptr_fun or a user defined functor.
Any suggestion on this issue? Thank you very much.
reference from Boost.Thread and its samples
It always take boost::function0<voidto construct a thread,
then as a client programmer, we can provide stateless or stateful
functor as adapter to the boost::function0<voidtype.
In this way the thread constructor can be simple and bring more
flexibility to the client programmer.
Ok, let's take out boost thread from the picture. servetlet is not used
to start a boost thread. I just want to call this function/functor from
the server thread. But when doing so, I found it difficult to design a
single interface to accommodate both a free function or a functor.
Because a free function is a pointer (value) but a functor can be used
as either a type or a value.
In this particular case, I need a type semantic for free function but
still the created type can hold on to the pointer value when it's
instantiated and invoked from a server thread. Clearly I have no trouble
designing the library with value semantic but it's not thread safe in
the case of functor callback.
Fei
Fei Liu wrote:
Barry wrote:
>Fei Liu wrote:
>>Hello, I have a situation where I need to design a library for multi-thread application, each thread does some work in a client supplied std::ptr_fun(free_function) or a functor.
Now since it's a multi-threaded application, naturally I want the call back functor to be created on a per thread basis.
Suppose my thread is so defined
template <typename servlet_type> struct worker_thread{ void operator()(){ serverlet_type()(int x); } };
Now I find it a problem to actually pass a free function to the worker thread.
void serv(int x){ }
typedef std::pointer_to_unary_function<int, voidserverlet_type;
worker_thread<serverlet_typethr;
Now, thr does not actually know that I want to use serv to perform per thread work.
I can pass the free function ptr all the way to worker_thread constructor but this design conflicts with a functor callback. If a functor object is passed all the way to worker_thread, the library is not thread safe.
I am using boost::thread to build this library. But that should be irrelevant. My problem is that when using a container with free_function/functor, I run into this problem. I checked STL implementation of various algorithms, they are all stateless free functions which made it possible to accept both std::ptr_fun or a user defined functor.
Any suggestion on this issue? Thank you very much.
reference from Boost.Thread and its samples
It always take boost::function0<voidto construct a thread, then as a client programmer, we can provide stateless or stateful functor as adapter to the boost::function0<voidtype. In this way the thread constructor can be simple and bring more flexibility to the client programmer.
Ok, let's take out boost thread from the picture. servetlet is not used
to start a boost thread. I just want to call this function/functor from
the server thread. But when doing so, I found it difficult to design a
single interface to accommodate both a free function or a functor.
I think Boost.function meets your need, you can make
boost::function<void(void)(boost.function0<void>) as member,
look at the code snippet below:
#include <iostream>
#include <boost/function.hpp>
void fvoid()
{
std::cout << "fvoid" << std::endl;
}
struct A
{
void operator() () const {
std::cout << "A::operator()()" << std::endl;
}
};
struct B
{
B(int i) : i_(i) {}
void operator() () const {
std::cout << "B::operator()() " << i_ << std::endl;
}
private:
int i_;
};
int
main()
{
boost::function<void(void)f0 = fvoid;
f0();
A a;
f0 = a;
f0();
B b(10);
f0 = b;
f0();
return 0;
}
so I think you can take boost::function<void(void)(function0<void>) as
your member of the class (serverlet?).
Do I still miss your point?
Anyway, if you wanna write *function* yourself, yeah, it's a difficult
job, at least for me. :-)
Because a free function is a pointer (value) but a functor can be used
as either a type or a value.
In this particular case, I need a type semantic for free function but
still the created type can hold on to the pointer value when it's
instantiated and invoked from a server thread. Clearly I have no trouble
designing the library with value semantic but it's not thread safe in
the case of functor callback.
Barry wrote:
Fei Liu wrote:
>Barry wrote:
>>Fei Liu wrote: Hello, I have a situation where I need to design a library for multi-thread application, each thread does some work in a client supplied std::ptr_fun(free_function) or a functor.
Now since it's a multi-threaded application, naturally I want the call back functor to be created on a per thread basis.
Suppose my thread is so defined
template <typename servlet_type> struct worker_thread{ void operator()(){ serverlet_type()(int x); } };
Now I find it a problem to actually pass a free function to the worker thread.
void serv(int x){ }
typedef std::pointer_to_unary_function<int, voidserverlet_type;
worker_thread<serverlet_typethr;
Now, thr does not actually know that I want to use serv to perform per thread work.
I can pass the free function ptr all the way to worker_thread constructor but this design conflicts with a functor callback. If a functor object is passed all the way to worker_thread, the library is not thread safe.
I am using boost::thread to build this library. But that should be irrelevant. My problem is that when using a container with free_function/functor, I run into this problem. I checked STL implementation of various algorithms, they are all stateless free functions which made it possible to accept both std::ptr_fun or a user defined functor.
Any suggestion on this issue? Thank you very much.
reference from Boost.Thread and its samples
It always take boost::function0<voidto construct a thread, then as a client programmer, we can provide stateless or stateful functor as adapter to the boost::function0<voidtype. In this way the thread constructor can be simple and bring more flexibility to the client programmer.
Ok, let's take out boost thread from the picture. servetlet is not used to start a boost thread. I just want to call this function/functor from the server thread. But when doing so, I found it difficult to design a single interface to accommodate both a free function or a functor.
I think Boost.function meets your need, you can make
boost::function<void(void)(boost.function0<void>) as member,
look at the code snippet below:
#include <iostream>
#include <boost/function.hpp>
void fvoid()
{
std::cout << "fvoid" << std::endl;
}
struct A
{
void operator() () const {
std::cout << "A::operator()()" << std::endl;
}
};
struct B
{
B(int i) : i_(i) {}
void operator() () const {
std::cout << "B::operator()() " << i_ << std::endl;
}
private:
int i_;
};
int
main()
{
boost::function<void(void)f0 = fvoid;
f0();
A a;
f0 = a;
f0();
B b(10);
f0 = b;
f0();
return 0;
}
so I think you can take boost::function<void(void)(function0<void>) as
your member of the class (serverlet?).
Do I still miss your point?
Anyway, if you wanna write *function* yourself, yeah, it's a difficult
job, at least for me. :-)
What if it's not a simple void (*fp)(void) function type? Does
boost::function support it? Again, if you check my explanation below.
You'd see that It's a problem with type semantic. Even in your current
example, you assign the value of fvoid to f0. How do you propose to
initialize server in my original program?
Thinking of it, I began to see that maybe there is something
fundamentally flawed with my design. I simply cannot use type semantic
with free function...As it's only meaningful to pass the function
address value around to be invoked later.
It's probably sensible to confine callbacks as functors. It's more
flexible and powerful from my experience to be used as callback.
Fei
>
>Because a free function is a pointer (value) but a functor can be used as either a type or a value.
In this particular case, I need a type semantic for free function but still the created type can hold on to the pointer value when it's instantiated and invoked from a server thread. Clearly I have no trouble designing the library with value semantic but it's not thread safe in the case of functor callback. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Alexander Stippler |
last post by:
Hi,
simple question. Why does this not work:
#include <algorithm>
#include <cmath>
#include <iostream>
int
main()
|
by: daniel.w.gelder |
last post by:
I wrote a template class that takes a function prototype and lets you
store and call a C-level function, like this:
inline string SampleFunction(int, bool) {..}
functor<string (int, bool)>...
|
by: nan.li.g |
last post by:
Hello, all,
This is probably not so much related to C++ (Sorry in advance). But
I did get this question during a C++ job interview.
You are asked to design some data structure and algorith for the...
|
by: Lionel B |
last post by:
I have a function which takes a functor argument. I which to call it for a
functor which is actually a class member; this works fine, using
the mem_fun_ref and bind1st functions (see listing 1...
|
by: DevNull |
last post by:
Hi there everyone,
I'm creating a very simple immediate mode command interpreter.
The final purpose is to provide a pluggable control and command
console for a MUD server I have written.
The...
|
by: Daniel Pitts |
last post by:
I have std::vector<Base *bases;
I'd like to do something like:
std::for_each(bases.begin(), bases.end(), operator delete);
Is it possible without writing an adapter? Is there a better way? Is...
|
by: Soumen |
last post by:
I wanted convert a mixed case string to a lower case one. And I tried
following code:
std::transform(mixedCaseString.begin(), mixedCaseString::end(),
mixedCaseString.begin(),...
|
by: ma740988 |
last post by:
Consider
# include <iostream>
# include <vector>
# include <typeinfo>
# include <string>
class BaseMsg {
friend std::ostream& operator<<( std::ostream&, const BaseMsg& );
std::string name...
|
by: eiji.anonremail |
last post by:
I would like to search in a vector depending on "a" or "a and b"
without the overhead of creating a Foo object or another predicate
class.
Is that possible? Using a member function pointer or a...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 4 Oct 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: Aliciasmith |
last post by:
In an age dominated by smartphones, having a mobile app for your business is no longer an option; it's a necessity. Whether you're a startup or an established enterprise, finding the right mobile app...
|
by: tracyyun |
last post by:
Hello everyone,
I have a question and would like some advice on network connectivity. I have one computer connected to my router via WiFi, but I have two other computers that I want to be able to...
|
by: giovanniandrean |
last post by:
The energy model is structured as follows and uses excel sheets to give input data:
1-Utility.py contains all the functions needed to calculate the variables and other minor things (mentions...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
|
by: SueHopson |
last post by:
Hi All,
I'm trying to create a single code (run off a button that calls the Private Sub) for our parts list report that will allow the user to filter by either/both PartVendor and PartType. On...
| |