473,407 Members | 2,320 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,407 software developers and data experts.

problem with library design: support both std::ptr_fun and functor

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! ]

Aug 17 '07 #1
5 2501
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! ]

Aug 20 '07 #2
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! ]

Aug 20 '07 #3
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
Aug 20 '07 #4
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.
Aug 21 '07 #5
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.
Aug 21 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: Alexander Stippler | last post by:
Hi, simple question. Why does this not work: #include <algorithm> #include <cmath> #include <iostream> int main()
4
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)>...
3
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...
2
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...
7
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...
19
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...
13
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(),...
0
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...
5
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...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.