Source Code Cross Referenced for SynchronizedByte.java in  » Ajax » Laszlo-4.0.10 » EDU » oswego » cs » dl » util » concurrent » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Ajax » Laszlo 4.0.10 » EDU.oswego.cs.dl.util.concurrent 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:          File: SynchronizedByte.java
003:
004:          Originally written by Doug Lea and released into the public domain.
005:          This may be used for any purposes whatsoever without acknowledgment.
006:          Thanks for the assistance and support of Sun Microsystems Labs,
007:          and everyone contributing, testing, and using this code.
008:
009:          History:
010:          Date       Who                What
011:          19Jun1998  dl               Create public version
012:         */
013:
014:        package EDU.oswego.cs.dl.util.concurrent;
015:
016:        /**
017:         * A class useful for offloading synch for byte instance variables.
018:         *
019:         * <p>[<a href="http://gee.cs.oswego.edu/dl/classes/EDU/oswego/cs/dl/util/concurrent/intro.html"> Introduction to this package. </a>]
020:         **/
021:
022:        public class SynchronizedByte extends SynchronizedVariable implements 
023:                Comparable, Cloneable {
024:
025:            protected byte value_;
026:
027:            /** 
028:             * Make a new SynchronizedByte with the given initial value,
029:             * and using its own internal lock.
030:             **/
031:            public SynchronizedByte(byte initialValue) {
032:                super ();
033:                value_ = initialValue;
034:            }
035:
036:            /** 
037:             * Make a new SynchronizedByte with the given initial value,
038:             * and using the supplied lock.
039:             **/
040:            public SynchronizedByte(byte initialValue, Object lock) {
041:                super (lock);
042:                value_ = initialValue;
043:            }
044:
045:            /** 
046:             * Return the current value 
047:             **/
048:            public final byte get() {
049:                synchronized (lock_) {
050:                    return value_;
051:                }
052:            }
053:
054:            /** 
055:             * Set to newValue.
056:             * @return the old value 
057:             **/
058:
059:            public byte set(byte newValue) {
060:                synchronized (lock_) {
061:                    byte old = value_;
062:                    value_ = newValue;
063:                    return old;
064:                }
065:            }
066:
067:            /**
068:             * Set value to newValue only if it is currently assumedValue.
069:             * @return true if successful
070:             **/
071:            public boolean commit(byte assumedValue, byte newValue) {
072:                synchronized (lock_) {
073:                    boolean success = (assumedValue == value_);
074:                    if (success)
075:                        value_ = newValue;
076:                    return success;
077:                }
078:            }
079:
080:            /** 
081:             * Atomically swap values with another SynchronizedByte.
082:             * Uses identityHashCode to avoid deadlock when
083:             * two SynchronizedBytes attempt to simultaneously swap with each other.
084:             * (Note: Ordering via identyHashCode is not strictly guaranteed
085:             * by the language specification to return unique, orderable
086:             * values, but in practice JVMs rely on them being unique.)
087:             * @return the new value 
088:             **/
089:
090:            public byte swap(SynchronizedByte other) {
091:                if (other == this )
092:                    return get();
093:                SynchronizedByte fst = this ;
094:                SynchronizedByte snd = other;
095:                if (System.identityHashCode(fst) > System.identityHashCode(snd)) {
096:                    fst = other;
097:                    snd = this ;
098:                }
099:                synchronized (fst.lock_) {
100:                    synchronized (snd.lock_) {
101:                        fst.set(snd.set(fst.get()));
102:                        return get();
103:                    }
104:                }
105:            }
106:
107:            /** 
108:             * Increment the value.
109:             * @return the new value 
110:             **/
111:            public byte increment() {
112:                synchronized (lock_) {
113:                    return ++value_;
114:                }
115:            }
116:
117:            /** 
118:             * Decrement the value.
119:             * @return the new value 
120:             **/
121:            public byte decrement() {
122:                synchronized (lock_) {
123:                    return --value_;
124:                }
125:            }
126:
127:            /** 
128:             * Add amount to value (i.e., set value += amount)
129:             * @return the new value 
130:             **/
131:            public byte add(byte amount) {
132:                synchronized (lock_) {
133:                    return value_ += amount;
134:                }
135:            }
136:
137:            /** 
138:             * Subtract amount from value (i.e., set value -= amount)
139:             * @return the new value 
140:             **/
141:            public byte subtract(byte amount) {
142:                synchronized (lock_) {
143:                    return value_ -= amount;
144:                }
145:            }
146:
147:            /** 
148:             * Multiply value by factor (i.e., set value *= factor)
149:             * @return the new value 
150:             **/
151:            public synchronized byte multiply(byte factor) {
152:                synchronized (lock_) {
153:                    return value_ *= factor;
154:                }
155:            }
156:
157:            /** 
158:             * Divide value by factor (i.e., set value /= factor)
159:             * @return the new value 
160:             **/
161:            public byte divide(byte factor) {
162:                synchronized (lock_) {
163:                    return value_ /= factor;
164:                }
165:            }
166:
167:            /** 
168:             * Set the value to the negative of its old value
169:             * @return the new value 
170:             **/
171:            public byte negate() {
172:                synchronized (lock_) {
173:                    value_ = (byte) (-value_);
174:                    return value_;
175:                }
176:            }
177:
178:            /** 
179:             * Set the value to its complement
180:             * @return the new value 
181:             **/
182:            public byte complement() {
183:                synchronized (lock_) {
184:                    value_ = (byte) ~value_;
185:                    return value_;
186:                }
187:            }
188:
189:            /** 
190:             * Set value to value &amp; b.
191:             * @return the new value 
192:             **/
193:            public byte and(byte b) {
194:                synchronized (lock_) {
195:                    value_ = (byte) (value_ & b);
196:                    return value_;
197:                }
198:            }
199:
200:            /** 
201:             * Set value to value | b.
202:             * @return the new value 
203:             **/
204:            public byte or(byte b) {
205:                synchronized (lock_) {
206:                    value_ = (byte) (value_ | b);
207:                    return value_;
208:                }
209:            }
210:
211:            /** 
212:             * Set value to value ^ b.
213:             * @return the new value 
214:             **/
215:            public byte xor(byte b) {
216:                synchronized (lock_) {
217:                    value_ = (byte) (value_ ^ b);
218:                    return value_;
219:                }
220:            }
221:
222:            public int compareTo(byte other) {
223:                byte val = get();
224:                return (val < other) ? -1 : (val == other) ? 0 : 1;
225:            }
226:
227:            public int compareTo(SynchronizedByte other) {
228:                return compareTo(other.get());
229:            }
230:
231:            public int compareTo(Object other) {
232:                return compareTo((SynchronizedByte) other);
233:            }
234:
235:            public boolean equals(Object other) {
236:                if (other != null && other instanceof  SynchronizedByte)
237:                    return get() == ((SynchronizedByte) other).get();
238:                else
239:                    return false;
240:            }
241:
242:            public int hashCode() {
243:                return (int) (get());
244:            }
245:
246:            public String toString() {
247:                return Byte.toString(get());
248:            }
249:
250:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.