2001-03-06 14:07:14 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
|
|
|
|
#ifndef SHARECONTAINER_H
|
|
|
|
#define SHARECONTAINER_H
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <algorithm>
|
2001-03-06 19:29:58 +00:00
|
|
|
#include <functional>
|
2001-03-06 14:07:14 +00:00
|
|
|
#include <boost/utility.hpp>
|
|
|
|
#include <boost/smart_ptr.hpp>
|
|
|
|
|
|
|
|
///
|
|
|
|
template<class Share>
|
|
|
|
class ShareContainer : public noncopyable {
|
|
|
|
public:
|
|
|
|
///
|
|
|
|
typedef std::vector<boost::shared_ptr<Share> > Params;
|
|
|
|
///
|
2001-03-06 17:18:06 +00:00
|
|
|
typedef typename Params::value_type value_type;
|
|
|
|
///
|
|
|
|
value_type
|
2001-03-06 14:07:14 +00:00
|
|
|
get(Share const & ps) const {
|
|
|
|
// First see if we already have this ps in the container
|
2001-03-06 19:29:58 +00:00
|
|
|
#if 0
|
2001-03-06 14:07:14 +00:00
|
|
|
Params::iterator it = params.begin();
|
|
|
|
Params::iterator end = params.end();
|
|
|
|
for (; it != end; ++it) {
|
|
|
|
if (ps == *(*it).get())
|
|
|
|
break;
|
|
|
|
}
|
2001-03-06 19:29:58 +00:00
|
|
|
#else
|
2001-03-07 11:22:05 +00:00
|
|
|
Params::iterator it = std::find_if(params.begin(),
|
2001-03-06 19:29:58 +00:00
|
|
|
params.end(),
|
|
|
|
isEqual(ps));
|
|
|
|
#endif
|
2001-03-06 17:18:06 +00:00
|
|
|
value_type tmp;
|
2001-03-06 19:29:58 +00:00
|
|
|
if (it == params.end()) {
|
2001-03-06 14:07:14 +00:00
|
|
|
// ok we don't have it so we should
|
|
|
|
// insert it.
|
|
|
|
tmp.reset(new Share(ps));
|
|
|
|
params.push_back(tmp);
|
|
|
|
// We clean here. This can cause us to have
|
|
|
|
// some (one) unique elemements some times
|
|
|
|
// but we should gain a lot in speed.
|
|
|
|
clean();
|
|
|
|
std::sort(params.rbegin(), params.rend(), comp());
|
|
|
|
} else {
|
|
|
|
// yes we have it already
|
|
|
|
tmp = *it;
|
|
|
|
}
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
private:
|
2001-03-06 19:29:58 +00:00
|
|
|
///
|
|
|
|
struct isEqual {
|
|
|
|
isEqual(Share const & s) : p_(s) {}
|
|
|
|
bool operator()(value_type const & p1) const {
|
|
|
|
return *p1.get() == p_;
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
Share const & p_;
|
|
|
|
};
|
2001-03-06 14:07:14 +00:00
|
|
|
///
|
|
|
|
struct comp {
|
2001-03-06 17:18:06 +00:00
|
|
|
int operator()(value_type const & p1,
|
2001-03-06 19:29:58 +00:00
|
|
|
value_type const & p2) const {
|
2001-03-06 14:07:14 +00:00
|
|
|
return p1.use_count() < p2.use_count();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
///
|
|
|
|
struct isUnique {
|
2001-03-06 17:18:06 +00:00
|
|
|
bool operator()(value_type const & p) const {
|
2001-03-06 14:07:14 +00:00
|
|
|
return p.unique();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
///
|
|
|
|
void clean() const {
|
|
|
|
// Remove all unique items. (i.e. entries that only
|
|
|
|
// exists in the conatainer and does not have a
|
|
|
|
// corresponding paragrah.
|
|
|
|
Params::iterator it = std::remove_if(params.begin(),
|
|
|
|
params.end(),
|
|
|
|
isUnique());
|
|
|
|
params.erase(it, params.end());
|
|
|
|
}
|
|
|
|
|
|
|
|
///
|
|
|
|
mutable Params params;
|
|
|
|
};
|
|
|
|
#endif
|