My favorites | Sign in
Project Home Downloads Wiki Issues Source
Checkout   Browse   Changes    
 
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
//
// typica - A client library for Amazon Web Services
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

package com.xerox.amazonws.sdb;

import java.util.ArrayList;
import java.util.List;

/**
* This class implements a thread-safe, persistent counter, backed by SimpleDB.
*
* @author D. Kavanagh
*/
public class Counter {
private Domain domain;
private String name;

/**
* Constructs a counter, where a value may already be stored. If no value is
* assigned, the counter is initialized to zero (the first counter value will be 1).
*
* @param domain the domain to use for the counter
* @param counterName the name of this counter, must be unique within this domain
* @throws SDBException wraps checked exceptions
*/
public Counter(Domain domain, String counterName) throws SDBException {
this.domain = domain;
this.name = counterName;
// check for value, if none, default to 0
Item i = domain.getItem(name);
List<ItemAttribute> attrs = i.getAttributes();
if (attrs == null) {
attrs = new ArrayList<ItemAttribute>();
}
ItemAttribute attr = null;
if (attrs.size() > 0) {
attr = attrs.get(0);
}
if (attr != null) {
String val = attr.getValue();
if (val != null) {
// good, there's a value
return;
}
}
else {
attrs.add(new ItemAttribute("Value", "0", true));
}
i.putAttributes(attrs);
}

/**
* Constructs a counter with a specified initial value
*
* @param domain the domain to use for the counter
* @param counterName the name of this counter, must be unique within this domain
* @param initValue the initial value for the counter
* @throws SDBException wraps checked exceptions
*/
public Counter(Domain domain, String counterName, long initValue) throws SDBException {
this(domain, counterName);
// initialize counter
Item i = domain.getItem(name);
ItemAttribute attr = new ItemAttribute("Value", ""+initValue, true);
ArrayList<ItemAttribute> attrs = new ArrayList<ItemAttribute>();
attrs.add(attr);
i.putAttributes(attrs);
}

/**
* This method returns the counter name
*
* @return the name of the counter
*/
public String getName() {
return name;
}

/**
* This method returns the next value, period.
*
* @return the next counter value
*/
public long nextValue() throws SDBException {
Item i = domain.getItem(name);
List<ItemAttribute> attrs = i.getAttributes();
ItemAttribute attr = attrs.get(0);
String val = attr.getValue();
long value = Long.parseLong(val);
boolean done = false;
while (!done) {
try {
attr = new ItemAttribute("Value", ""+(value+1), true);
attrs.clear();
attrs.add(attr);
ArrayList<Condition> conds = new ArrayList<Condition>();
conds.add(new Condition("Value", ""+value));
i.putAttributes(attrs, conds);
done = true;
} catch (SDBException ex) {
String msg = ex.getErrors().get(0).getCode();
if (msg.equals("ConditionalCheckFailed")) {
// increment, pause and try again
value++;
try { Thread.sleep(500); } catch (InterruptedException ie) {}
}
else {
throw ex;
}
}
}
return value+1;
}
}

Change log

r311 by dkavanagh on Mar 9, 2010   Diff
converted counter to use long
Go to: 
Project members, sign in to write a code review

Older revisions

r310 by dkavanagh on Mar 9, 2010   Diff
added thread-safe, persistent counter.
test code
All revisions of this file

File info

Size: 3648 bytes, 127 lines
Powered by Google Project Hosting