/src/java/opentss/ReadLock.java

http://open-tss.googlecode.com/ · Java · 62 lines · 35 code · 6 blank · 21 comment · 1 complexity · 53c057783830e8b4ea32d9397665eab4 MD5 · raw file

  1. /**
  2. * Copyright 2002-2006 the original author or authors.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. package opentss;
  17. import java.util.concurrent.locks.Condition;
  18. import java.util.concurrent.locks.ReentrantLock;
  19. /**
  20. * ?Channel?????????????????????????CPU????
  21. *
  22. * @author <a href="mailto:max.h.chen@hotmail.com">Max Chen</a>
  23. */
  24. final class ReadLock {
  25. private ReentrantLock lock = new ReentrantLock();
  26. private Condition blockedReading = lock.newCondition();
  27. private boolean isBlockedReading = true;
  28. void blockedReading() {
  29. lock.lock();
  30. try {
  31. isBlockedReading = true;
  32. } finally {
  33. lock.unlock();
  34. }
  35. }
  36. void unblockedReading() {
  37. lock.lock();
  38. try {
  39. isBlockedReading = false;
  40. blockedReading.signalAll();
  41. } finally {
  42. lock.unlock();
  43. }
  44. }
  45. void readyToReadData() {
  46. lock.lock();
  47. try {
  48. while (isBlockedReading)
  49. blockedReading.await();
  50. } catch (InterruptedException ie) {
  51. // ignore
  52. } finally {
  53. lock.unlock();
  54. }
  55. }
  56. }