simple_gc.h
Go to the documentation of this file.
1 /*********************************************************************
2 * Software License Agreement (BSD License)
3 *
4 * Copyright (c) 2010, Willow Garage, Inc.
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above
14 * copyright notice, this list of conditions and the following
15 * disclaimer in the documentation and/or other materials provided
16 * with the distribution.
17 * * Neither the name of the Willow Garage nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32 * POSSIBILITY OF SUCH DAMAGE.
33 *********************************************************************/
34 
35 #ifndef ROSRT_SIMPLE_GC_H
36 #define ROSRT_SIMPLE_GC_H
37 
38 #include "mwsr_queue.h"
39 
40 #include <ros/atomic.h>
41 #include <lockfree/object_pool.h>
42 #include <boost/thread/thread.hpp>
43 
44 namespace rosrt
45 {
46 
47 struct InitOptions;
48 
49 namespace detail
50 {
51 
52 class SimpleGC
53 {
54 public:
55  typedef void(*DeleteFunc)(void* pool);
56  typedef bool(*IsDeletableFunc)(void* pool);
57 
58  SimpleGC(const InitOptions& ops);
59  ~SimpleGC();
60 
61  void add(void* pool, DeleteFunc deleter, IsDeletableFunc deletable);
62 
63 private:
64  void gcThread();
65 
66  volatile bool running_;
67 
68  struct PoolGCItem
69  {
70  void* pool;
73  };
74 
75  boost::thread pool_gc_thread_;
76  MWSRQueue<PoolGCItem> pool_gc_queue_;
77  float period_;
78 };
79 
80 } // namespace detail
81 } // namespace rosrt
82 
83 #endif // ROSRT_SIMPLE_GC_H
84 
85 
object_pool.h
rosrt::detail::SimpleGC::pool_gc_queue_
MWSRQueue< PoolGCItem > pool_gc_queue_
Definition: simple_gc.h:108
rosrt
Definition: managers.h:38
rosrt::detail::SimpleGC::period_
float period_
Definition: simple_gc.h:109
rosrt::detail::SimpleGC::~SimpleGC
~SimpleGC()
Definition: simple_gc.cpp:117
rosrt::detail::SimpleGC::SimpleGC
SimpleGC(const InitOptions &ops)
Definition: simple_gc.cpp:109
rosrt::detail::SimpleGC::pool_gc_thread_
boost::thread pool_gc_thread_
Definition: simple_gc.h:107
rosrt::detail::SimpleGC::IsDeletableFunc
bool(* IsDeletableFunc)(void *pool)
Definition: simple_gc.h:88
atomic.h
rosrt::detail::SimpleGC::add
void add(void *pool, DeleteFunc deleter, IsDeletableFunc deletable)
Definition: simple_gc.cpp:128
rosrt::detail::SimpleGC::PoolGCItem::pool
void * pool
Definition: simple_gc.h:102
mwsr_queue.h
rosrt::detail::SimpleGC::running_
volatile bool running_
Definition: simple_gc.h:98
rosrt::detail::SimpleGC::gcThread
void gcThread()
Definition: simple_gc.cpp:137
rosrt::detail::SimpleGC::PoolGCItem::is_deletable
IsDeletableFunc is_deletable
Definition: simple_gc.h:104
rosrt::detail::SimpleGC::PoolGCItem::deleter
DeleteFunc deleter
Definition: simple_gc.h:103
rosrt::detail::SimpleGC::DeleteFunc
void(* DeleteFunc)(void *pool)
Definition: simple_gc.h:87


rosrt
Author(s): Josh Faust
autogenerated on Wed Mar 2 2022 00:54:17