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-07 11:22:05 +00:00
|
|
|
Params::iterator it = std::find_if(params.begin(),
|
2001-03-11 00:21:13 +00:00
|
|
|
params.end(),
|
|
|
|
isEqual(ps));
|
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();
|
2001-03-11 00:21:13 +00:00
|
|
|
//std::sort(params.rbegin(), params.rend(), comp());
|
2001-03-06 14:07:14 +00:00
|
|
|
} else {
|
|
|
|
// yes we have it already
|
|
|
|
tmp = *it;
|
2001-03-11 00:21:13 +00:00
|
|
|
// move it forward
|
|
|
|
if (it != params.begin())
|
|
|
|
swap(*it, *(it - 1));
|
2001-03-06 14:07:14 +00:00
|
|
|
}
|
|
|
|
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
|
|
|
///
|
2001-03-11 00:21:13 +00:00
|
|
|
//struct comp {
|
|
|
|
// int operator()(value_type const & p1,
|
|
|
|
// value_type const & p2) const {
|
|
|
|
// return p1.use_count() < p2.use_count();
|
|
|
|
// }
|
|
|
|
//};
|
2001-03-06 14:07:14 +00:00
|
|
|
///
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
};
|
2001-03-11 00:21:13 +00:00
|
|
|
|
2001-03-06 14:07:14 +00:00
|
|
|
///
|
|
|
|
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
|