Merged trunk at revision 161680 into branch.
[official-gcc.git] / libstdc++-v3 / include / ext / pb_ds / detail / resize_policy / sample_resize_trigger.hpp
blob963c5530a462aaeb0db5453032cebfa0b327f8f8
1 // -*- C++ -*-
3 // Copyright (C) 2005, 2006, 2007, 2008, 2009, 2010
4 // Free Software Foundation, Inc.
5 //
6 // This file is part of the GNU ISO C++ Library. This library is free
7 // software; you can redistribute it and/or modify it under the terms
8 // of the GNU General Public License as published by the Free Software
9 // Foundation; either version 3, or (at your option) any later
10 // version.
12 // This library is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 // General Public License for more details.
17 // Under Section 7 of GPL version 3, you are granted additional
18 // permissions described in the GCC Runtime Library Exception, version
19 // 3.1, as published by the Free Software Foundation.
21 // You should have received a copy of the GNU General Public License and
22 // a copy of the GCC Runtime Library Exception along with this program;
23 // see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24 // <http://www.gnu.org/licenses/>.
26 // Copyright (C) 2004 Ami Tavory and Vladimir Dreizin, IBM-HRL.
28 // Permission to use, copy, modify, sell, and distribute this software
29 // is hereby granted without fee, provided that the above copyright
30 // notice appears in all copies, and that both that copyright notice
31 // and this permission notice appear in supporting documentation. None
32 // of the above authors, nor IBM Haifa Research Laboratories, make any
33 // representation about the suitability of this software for any
34 // purpose. It is provided "as is" without express or implied
35 // warranty.
37 /**
38 * @file sample_resize_trigger.hpp
39 * Contains a sample resize trigger policy class.
42 #ifndef PB_DS_SAMPLE_RESIZE_TRIGGER_HPP
43 #define PB_DS_SAMPLE_RESIZE_TRIGGER_HPP
45 // A sample resize trigger policy.
46 class sample_resize_trigger
48 public:
50 // Size type.
51 typedef std::size_t size_type;
53 // Default constructor.
54 sample_resize_trigger();
56 // Copy constructor.
57 sample_range_hashing(const sample_resize_trigger& other);
59 // Swaps content.
60 inline void
61 swap(sample_resize_trigger& other);
63 protected:
65 // Notifies a search started.
66 inline void
67 notify_insert_search_start();
69 // Notifies a search encountered a collision.
70 inline void
71 notify_insert_search_collision();
73 // Notifies a search ended.
74 inline void
75 notify_insert_search_end();
77 // Notifies a search started.
78 inline void
79 notify_find_search_start();
81 // Notifies a search encountered a collision.
82 inline void
83 notify_find_search_collision();
85 // Notifies a search ended.
86 inline void
87 notify_find_search_end();
89 // Notifies a search started.
90 inline void
91 notify_erase_search_start();
93 // Notifies a search encountered a collision.
94 inline void
95 notify_erase_search_collision();
97 // Notifies a search ended.
98 inline void
99 notify_erase_search_end();
101 // Notifies an element was inserted. the total number of entries in
102 // the table is num_entries.
103 inline void
104 notify_inserted(size_type num_entries);
106 // Notifies an element was erased.
107 inline void
108 notify_erased(size_type num_entries);
110 // Notifies the table was cleared.
111 void
112 notify_cleared();
114 // Notifies the table was resized as a result of this object's
115 // signifying that a resize is needed.
116 void
117 notify_resized(size_type new_size);
119 // Notifies the table was resized externally.
120 void
121 notify_externally_resized(size_type new_size);
123 // Queries whether a resize is needed.
124 inline bool
125 is_resize_needed() const;
127 // Queries whether a grow is needed.
128 inline bool
129 is_grow_needed(size_type size, size_type num_entries) const;
131 private:
133 // Resizes to new_size.
134 virtual void
135 do_resize(size_type new_size);
138 #endif