object_pool.h 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. /**
  2. * Copyright (c) 2013, James Nutaro
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. *
  8. * 1. Redistributions of source code must retain the above copyright notice, this
  9. * list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright notice,
  11. * this list of conditions and the following disclaimer in the documentation
  12. * and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  16. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  17. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
  18. * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  19. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  20. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  21. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  22. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  23. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  24. *
  25. * The views and conclusions contained in the software and documentation are those
  26. * of the authors and should not be interpreted as representing official policies,
  27. * either expressed or implied, of the FreeBSD Project.
  28. *
  29. * Bugs, comments, and questions can be sent to nutaro@gmail.com
  30. */
  31. #ifndef __adevs_object_pool_h_
  32. #define __adevs_object_pool_h_
  33. #include "adevs_bag.h"
  34. namespace adevs
  35. {
  36. /**
  37. * A utility class for managing pools of objects that are stored on the heap.
  38. * Uses the new and delete operators to create and destroy objects.
  39. */
  40. template <class T> class object_pool
  41. {
  42. public:
  43. /// Construct a pool with a specific initial population
  44. object_pool(unsigned int pop = 0):
  45. pool()
  46. {
  47. for (unsigned int i = 0; i < pop; i++)
  48. pool.insert(new T());
  49. }
  50. /// Create an object
  51. T* make_obj()
  52. {
  53. T* obj;
  54. if (pool.empty()) obj = new T;
  55. else
  56. {
  57. obj = *((pool.end())--);
  58. pool.erase(pool.end()--);
  59. }
  60. return obj;
  61. }
  62. /// Return an object to the pool
  63. void destroy_obj(T* obj) { pool.insert(obj); }
  64. // Delete all objects in the pool
  65. ~object_pool()
  66. {
  67. typename Bag<T*>::iterator iter = pool.begin();
  68. for (; iter != pool.end(); iter++) delete *iter;
  69. }
  70. private:
  71. Bag<T*> pool;
  72. };
  73. } // end of namespace
  74. #endif