1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
|
// Copyright (c) 2017 GeometryFactory Sarl (France).
// All rights reserved.
//
// This file is part of CGAL (www.cgal.org).
//
// $URL: https://github.com/CGAL/cgal/blob/v6.1/Classification/include/CGAL/Classification/Feature_set.h $
// $Id: include/CGAL/Classification/Feature_set.h b26b07a1242 $
// SPDX-License-Identifier: GPL-3.0-or-later OR LicenseRef-Commercial
//
// Author(s) : Simon Giraudot
#ifndef CGAL_CLASSIFICATION_FEATURE_SET_H
#define CGAL_CLASSIFICATION_FEATURE_SET_H
#include <CGAL/license/Classification.h>
#include <CGAL/Classification/Feature_base.h>
#ifdef CGAL_LINKED_WITH_TBB
#include <tbb/task_group.h>
#endif // CGAL_LINKED_WITH_TBB
#include <vector>
#include <string>
#include <utility>
#include <memory>
namespace CGAL {
namespace Classification {
/*!
\ingroup PkgClassificationFeature
\brief sets of features (see `Feature_base`) used as input by
classification algorithms. This class handles both the instantiation,
the addition and the deletion of features.
*/
class Feature_set
{
using Base = std::vector<Feature_handle>;
Base m_features;
struct Compare_name
{
bool operator() (const Feature_handle& a, const Feature_handle& b) const
{
if (a->name() == b->name())
return a < b;
return a->name() < b->name();
}
};
#ifdef CGAL_LINKED_WITH_TBB
std::unique_ptr<tbb::task_group> m_tasks;
#endif // CGAL_LINKED_WITH_TBB
public:
#ifdef DOXYGEN_RUNNING
using const_iterator = unspecified_type; ///< A random access constant iterator with value type `Feature_handle`.
using iterator = unspecified_type; ///< A random access iterator with value type `Feature_handle`.
#else
using const_iterator = std::vector<Feature_handle>::const_iterator;
using iterator = std::vector<Feature_handle>::iterator;
#endif
/// \name Constructor
/// @{
/*!
\brief creates an empty feature set.
*/
Feature_set()
{ }
/// @}
/// \name Modifications
/// @{
/*!
\brief instantiates a new feature and adds it to the set.
If several calls of `add()` are surrounded by
`begin_parallel_additions()` and `end_parallel_additions()`, they
are computed in parallel. They are still inserted in the specified
order in the feature set (the first call of `add()` creates a
feature at index 0, the second at index 1, etc.).
\sa `begin_parallel_additions()`
\sa `end_parallel_additions()`
\tparam Feature type of the feature, inherited from
`Feature_base`.
\tparam T types of the parameters of the feature's constructor.
\param t parameters of the feature's constructor.
\return a handle to the newly added feature.
*/
template <typename Feature, typename ... T>
Feature_handle add (T&& ... t)
{
#ifdef CGAL_LINKED_WITH_TBB
if (m_tasks)
{
m_features.push_back (Feature_handle());
Parallel_feature_adder_ptr<Feature, T...> adder
= std::make_unique<Parallel_feature_adder<Feature, T...> >
(m_features.back(), std::forward<T>(t)...);
m_tasks->run (*adder);
m_adders.emplace_back (std::move (adder));
}
else
#endif
{
m_features.push_back (Feature_handle (std::make_unique<Feature>(std::forward<T>(t)...)));
}
return m_features.back();
}
/// \cond SKIP_IN_MANUAL
template <typename Feature, typename ... T>
Feature_handle add_with_scale_id (std::size_t i, T&& ... t)
{
#ifdef CGAL_LINKED_WITH_TBB
if (m_tasks)
{
m_features.push_back (Feature_handle());
Parallel_feature_adder_ptr<Feature, T...> adder
= std::make_unique<Parallel_feature_adder<Feature, T...> >
(i, m_features.back(), std::forward<T>(t)...);
m_tasks->run (*adder);
m_adders.emplace_back (std::move (adder));
}
else
#endif
{
m_features.push_back (Feature_handle (std::make_unique<Feature>(std::forward<T>(t)...)));
m_features.back()->set_name (m_features.back()->name() + "_" + std::to_string(i));
}
return m_features.back();
}
/// \endcond
/*!
\brief removes a feature.
\param feature the handle to feature type that must be removed.
\return `true` if the feature was correctly removed, `false` if
its handle was not found.
*/
bool remove (Feature_handle feature)
{
for (std::size_t i = 0; i < m_features.size(); ++ i)
if (m_features[i] == feature)
{
m_features.erase (m_features.begin() + i);
return true;
}
return false;
}
/*!
\brief removes all features.
*/
void clear ()
{
m_features.clear();
}
/// @}
/// \name Parallel Processing
/// @{
/*!
\brief initializes structures to compute features in parallel.
If the user wants to add features in parallel, this function
should be called before making several calls of `add()`. After the
calls of `add()`, `end_parallel_additions()` should be called.
\note If \ref thirdpartyTBB is not available, this function does
nothing.
\warning As arguments of `add()` are passed by reference and that new
threads are started if `begin_parallel_additions()` is used, it is
highly recommended to always call `begin_parallel_additions()`,
`add()` and `end_parallel_additions()` _within the same scope_, to
avoid keeping references to temporary objects that might be
deleted before the thread has terminated.
\sa `end_parallel_additions()`
*/
void begin_parallel_additions()
{
#ifdef CGAL_LINKED_WITH_TBB
m_tasks = std::make_unique<tbb::task_group>();
#endif
}
/*!
\brief waits for the end of parallel feature computation and
clears dedicated data structures afterwards.
If the user wants to add features in parallel, this function
should be called after `begin_parallel_additions()` and several
calls of `add()`.
\note If \ref thirdpartyTBB is not available, this function does
nothing.
\sa `begin_parallel_additions()`
*/
void end_parallel_additions()
{
#ifdef CGAL_LINKED_WITH_TBB
m_tasks->wait();
m_tasks.reset();
m_adders.clear();
#endif
}
/// @}
/// \name Access
/// @{
const_iterator begin() const { return m_features.begin(); }
iterator begin() { return m_features.begin(); }
const_iterator end() const { return m_features.end(); }
iterator end() { return m_features.end(); }
/*!
\brief returns how many features are defined.
*/
std::size_t size() const
{
return m_features.size();
}
/*!
\brief returns the \f$i^{th}\f$ feature.
*/
Feature_handle operator[](std::size_t i) const
{
return m_features[i];
}
/// @}
/// \cond SKIP_IN_MANUAL
void free_memory(std::size_t i)
{
m_features[i] = Feature_handle();
}
void sort_features_by_name()
{
std::sort (m_features.begin(), m_features.end(),
Compare_name());
}
/// \endcond
private:
/// \cond SKIP_IN_MANUAL
struct Abstract_parallel_feature_adder
{
virtual ~Abstract_parallel_feature_adder() { }
virtual void operator()() const = 0;
};
template <typename Feature, typename ... T>
struct Parallel_feature_adder : Abstract_parallel_feature_adder
{
std::size_t scale;
mutable Feature_handle fh;
std::shared_ptr<std::tuple<T...> > args;
Parallel_feature_adder (Feature_handle fh, T&& ... t)
: scale (std::size_t(-1)), fh (fh)
{
args = std::make_shared<std::tuple<T...> >(std::forward<T>(t)...);
}
Parallel_feature_adder (std::size_t scale, Feature_handle fh, T&& ... t)
: scale(scale), fh (fh)
{
args = std::make_shared<std::tuple<T...> >(std::forward<T>(t)...);
}
template<int ...>
struct seq { };
template<int N, int ...S>
struct gens : gens<N-1, N-1, S...> { };
template<int ...S>
struct gens<0, S...> {
typedef seq<S...> type;
};
template <typename Type>
const Type& remove_ref_of_simple_type (const Type& t) const { return t; }
template <typename Tuple, int ... S>
void add_feature (Tuple& t, seq<S...>) const
{
fh.attach (std::make_unique<Feature> (std::forward<T>(std::get<S>(t))...));
if (scale != std::size_t(-1))
fh->set_name (fh->name() + "_" + std::to_string(scale));
}
void operator()() const
{
add_feature(*args, typename gens<sizeof...(T)>::type());
}
};
using Abstract_parallel_feature_adder_ptr = std::unique_ptr<Abstract_parallel_feature_adder>;
template <typename Feature, typename ... T>
using Parallel_feature_adder_ptr = std::unique_ptr<Parallel_feature_adder<Feature, T...> >;
std::vector<Abstract_parallel_feature_adder_ptr> m_adders;
/// \endcond
};
} // namespace Classification
} // namespace CGAL
#endif // CGAL_CLASSIFICATION_FEATURE_SET_H
|