summaryrefslogtreecommitdiff
path: root/examples/Web_Crawler/Caching_Strategies_T.cpp
blob: 8bb86f1f73060c4c742be62d8385c3116ed4bf1a (plain)
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
//$Id$

#ifndef CACHING_STRATEGIES_T_C
#define CACHING_STRATEGIES_T_C

#include "Caching_Strategies_T.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
#define ACE_LACKS_PRAGMA_ONCE
#endif /* ACE_LACKS_PRAGMA_ONCE */

#if !defined (__ACE_INLINE__)
#include "Caching_Strategies_T.i"
#endif /* __ACE_INLINE__ */

ACE_RCSID(Web_Crawler, Caching_Strategies_T, "$Id$")

template<class CONTAINER> int
ACE_LRU_Caching_Strategy<CONTAINER>::clear_cache (CONTAINER &container)
{
  // Check that the purge_percent is non-zero.
  if (this->purge_percent_ == 0)
    return 0;

  // Also whether the number of entries in the cache is just one!
  // Oops! then thers no way out but exiting. So return an error.
  if (this->entries_ == 1)
    return -1;

  KEY key_to_remove;
  VALUE value_to_remove;

  ITEM *item = 0;

  ATTRIBUTES min = 0;

   // Return value.
   int result = 0;

   // Calculate the no of entries to remove form the cache depending
   // upon the <purge_percent>.
   int no_of_entries = (this->purge_percent_ / 100) * this->entries_;

   // @@ Don't do this stuff below. Simply take the ceiling of the
   // above <no_of_entries>.

   // If the number of entries is less than 10 with the default percent
   // being 10, the calculated no_pf_entries equals 0. So increment it
   // so that atleast one entry gets purged.
   if (no_of_entries == 0)
     {
       if (container.current_size () >= 1)
         no_of_entries = 1;
     }

   for (int i = 0; i < no_of_entries ; ++i)
     {
       ITERATOR iter (container);

       // The iterator moves thru the container searching for the entry with the
       // lowest ATTRIBUTES.

       for (min = (*iter).int_id_.second (), key_to_remove = (*iter).ext_id_, value_to_remove = (*iter).int_id_;
            iter.next (item) != 0;
            ++iter)
         {
           // Ah! an item with lower ATTTRIBUTES...
           if (min > (*iter).int_id_.second ())
             {
               min = (*iter).int_id_.second ();
               key_to_remove = (*iter).ext_id_;
               value_to_remove = (*iter).int_id_;
             }
         }

       // @@ Remove this
       ACE_DEBUG ((LM_DEBUG, "AUTO_PURGE\nLRU: before unbind: current_size %d\n", container.current_size ()));

       // @@ Remove this svc_handler specific code!!

       // Delete the dynamically allocated value object.
       if (value_to_remove.first () != 0)
         {
           (value_to_remove.first ())->recycler (0, 0);

           result = (value_to_remove.first ())->close();
           if (result == -1)
             return result;
         }
       // Remove the item from cache.

       // @@ What happens to this result? You should stop on failure.
       result = container.unbind (key_to_remove);
       --this->entries_;

       // @@ Remove this
       ACE_DEBUG ((LM_DEBUG, "LRU:after unbind: result %d current_size %d\n", result, container.current_size ()));
     }
   return result;
}

////////////////////////////////////////////////////////////////////////////////////////////////
template<class CONTAINER> int
ACE_LFU_Caching_Strategy<CONTAINER>::clear_cache (CONTAINER &container)
{
   // Check that the purge_percent is non-zero.
   if (purge_percent_ == 0)
    return 0;

  // Also whether the number of entries in the cache is just one!
  // Oops! then thers no way out but exiting. So return an error.
  if (this->entries_ == 1)
    return -1;

   KEY key_to_remove;
   VALUE value_to_remove;

   ITEM *item = 0;

   ATTRIBUTES min = 0;

   // Return value.
   int result = 0;

   // Calculate the no of entries to remove form the cache depending upon the <purge_percent>.
   int no_of_entries = (this->purge_percent_/100) * this->entries_;
   // If the number of entries is less than 10 with the default percent
   // being 10, the calculated no_pf_entries equals 0. So increment it
   // so that atleast one entry gets purged.
   if (no_of_entries == 0)
     {
       if (container.current_size () >= 1)
         no_of_entries = 1;
     }

   for (int i = 0; i < no_of_entries ; ++i)
     {
       ITERATOR iter (container);
       // The iterator moves thru the container searching for the entry with the
       // lowest ATTRIBUTES.

       for (min = (*iter).int_id_.second (), key_to_remove = (*iter).ext_id_, value_to_remove = (*iter).int_id_;
            iter.next (item) != 0 ;
            ++iter)
         {
           // Ah! an item with lower ATTTRIBUTES...
           if (min > (*iter).int_id_.second ())
             {
               min = (*iter).int_id_.second ();
               key_to_remove = (*iter).ext_id_;
               value_to_remove = (*iter).int_id_;
             }
         }
       ACE_DEBUG ((LM_DEBUG, "AUTO_PURGE\nLFU: before unbind: current_size %d\n", container.current_size ()));

       // Delete the dynamically allocated value object.
       if (value_to_remove.first () != 0)
         {
           (value_to_remove.first ())->recycler (0, 0);

           result = (value_to_remove.first ())->close();
           if (result == -1)
             return result;
         }
       // Remove the item from cache.
       result = container.unbind (key_to_remove);
       --this->entries_;
       ACE_DEBUG ((LM_DEBUG, "LFU:after unbind: result %d current_size %d\n", result, container.current_size ()));
     }
   return result;

}

////////////////////////////////////////////////////////////////////////////////////////////////
template<class CONTAINER> int
ACE_FIFO_Caching_Strategy<CONTAINER>::clear_cache (CONTAINER &container)
{
   // Check that the purge_percent is non-zero.
   if (this->purge_percent_ == 0)
    return 0;

  // Also whether the number of entries in the cache is just one!
  // Oops! then thers no way out but exiting. So return an error.
  if (this->entries_ == 1)
    return -1;

   KEY key_to_remove;
   VALUE value_to_remove;

   ITEM *item = 0;

   ATTRIBUTES min = 0;

   // Return value.
   int result = 0;

   // Calculate the no of entries to remove form the cache depending upon the <purge_percent>.
   int no_of_entries = (this->purge_percent_/100) * this->entries_;
   // If the number of entries is less than 10 with the default percent
   // being 10, the calculated no_pf_entries equals 0. So increment it
   // so that atleast one entry gets purged.
   if (no_of_entries == 0)
     {
       if (container.current_size () >= 1)
         no_of_entries = 1;
     }

   for (int i = 0; i < no_of_entries ; ++i)
     {
       ITERATOR iter (container);
       // The iterator moves thru the container searching for the entry with the
       // lowest ATTRIBUTES.
       for (min = (*iter).int_id_.second (), key_to_remove = (*iter).ext_id_, value_to_remove = (*iter).int_id_;
            iter.next (item) != 0 ;
            ++iter)
         {
           // Ah! an item with lower ATTTRIBUTES...
           if (min > (*iter).int_id_.second ())
             {
               min = (*iter).int_id_.second ();
               key_to_remove = (*iter).ext_id_;
               value_to_remove = (*iter).int_id_;
             }
         }
       ACE_DEBUG ((LM_DEBUG, "AUTO_PURGE\nFIFO: before unbind: current_size %d\n", container.current_size ()));

       // Delete the dynamically allocated value object.
       if (value_to_remove.first () != 0)
         {
           (value_to_remove.first ())->recycler (0, 0);

           result = (value_to_remove.first ())->close();
           if (result == -1)
             return result;
         }
       // Remove the item from cache.
       result = container.unbind (key_to_remove);
       --this->entries_;
       ACE_DEBUG ((LM_DEBUG, "FIFO:after unbind: result %d current_size %d\n", result, container.current_size ()));
     }
   return result;

}

////////////////////////////////////////////////////////////////////////////////////////////////

template<class CONTAINER> int
ACE_Null_Caching_Strategy<CONTAINER>::clear_cache (CONTAINER &container)
{
  return 0;
}

///////////////////////////////////////////////////////////////////////////////////////////////

ACE_ALLOC_HOOK_DEFINE(ACE_LRU_Caching_Strategy)
ACE_ALLOC_HOOK_DEFINE(ACE_LFU_Caching_Strategy)
ACE_ALLOC_HOOK_DEFINE(ACE_FIFO_Caching_Strategy)
ACE_ALLOC_HOOK_DEFINE(ACE_Null_Caching_Strategy)
#endif /* CACHING_STRATEGIES_T_C */