/platform/bb/rhodes/src/rhomobile/SecondaryResourceFetchThread.java

http://github.com/rhomobile/rhodes · Java · 188 lines · 89 code · 35 blank · 64 comment · 20 complexity · 9642564690cc23482a307c5ce6d600e5 MD5 · raw file

  1. /*------------------------------------------------------------------------
  2. * (The MIT License)
  3. *
  4. * Copyright (c) 2008-2011 Rhomobile, Inc.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a copy
  7. * of this software and associated documentation files (the "Software"), to deal
  8. * in the Software without restriction, including without limitation the rights
  9. * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
  10. * copies of the Software, and to permit persons to whom the Software is
  11. * furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice shall be included in
  14. * all copies or substantial portions of the Software.
  15. *
  16. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  17. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  18. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  19. * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  20. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
  21. * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
  22. * THE SOFTWARE.
  23. *
  24. * http://rhomobile.com
  25. *------------------------------------------------------------------------*/
  26. package rhomobile;
  27. import java.util.Vector;
  28. import javax.microedition.io.HttpConnection;
  29. import com.rho.RhoEmptyLogger;
  30. import com.rho.RhoLogger;
  31. import net.rim.device.api.browser.field.BrowserContent;
  32. import net.rim.device.api.browser.field.RequestedResource;
  33. /**
  34. *
  35. */
  36. public class SecondaryResourceFetchThread extends Thread {
  37. private static final RhoLogger LOG = RhoLogger.RHO_STRIP_LOG ? new RhoEmptyLogger() :
  38. new RhoLogger("RhodesApplication");
  39. /**
  40. * Callback browser field
  41. */
  42. private BrowserContent _browserField;
  43. /**
  44. * Images to retrieve
  45. */
  46. private Vector _imageQueue;
  47. /**
  48. * True is all images have been enqueued
  49. */
  50. private boolean _done;
  51. /**
  52. * Sync object
  53. */
  54. private static Object _syncObject = new Object();
  55. /**
  56. * Secondary thread
  57. */
  58. private static SecondaryResourceFetchThread _currentThread;
  59. /**
  60. * Enqueues secondary resource for a browser field.
  61. *
  62. * @param resource - resource to retrieve
  63. * @param referrer - call back browsr field
  64. */
  65. public static void enqueue(RequestedResource resource, BrowserContent referrer) {
  66. if (resource == null) {
  67. return;
  68. }
  69. synchronized( _syncObject ) {
  70. // create new thread
  71. if (_currentThread == null) {
  72. _currentThread = new SecondaryResourceFetchThread();
  73. _currentThread.start();
  74. } else {
  75. // if thread alread is running, check that we are adding images for the same browser field
  76. if (referrer != _currentThread._browserField) {
  77. synchronized( _currentThread._imageQueue) {
  78. // if the request is for a different browser field,
  79. // clear old elements
  80. _currentThread._imageQueue.removeAllElements();
  81. }
  82. }
  83. }
  84. synchronized( _currentThread._imageQueue) {
  85. _currentThread._imageQueue.addElement(resource);
  86. }
  87. _currentThread._browserField = referrer;
  88. }
  89. }
  90. /**
  91. * Constructor
  92. *
  93. */
  94. private SecondaryResourceFetchThread() {
  95. _imageQueue = new Vector();
  96. }
  97. /**
  98. * Indicate that all images have been enqueued for this browser field
  99. */
  100. public static void doneAddingImages() {
  101. synchronized( _syncObject ) {
  102. if (_currentThread != null) {
  103. _currentThread._done = true;
  104. }
  105. }
  106. }
  107. public void run() {
  108. while (true) {
  109. if (_done) {
  110. // check if we are done requesting images
  111. synchronized( _syncObject ) {
  112. synchronized( _imageQueue ) {
  113. if (_imageQueue.size() == 0) {
  114. _currentThread = null;
  115. break;
  116. }
  117. }
  118. }
  119. }
  120. RequestedResource resource = null;
  121. // request next image
  122. synchronized( _imageQueue ) {
  123. if (_imageQueue.size() > 0) {
  124. resource = (RequestedResource)_imageQueue.elementAt(0);
  125. _imageQueue.removeElementAt(0);
  126. }
  127. }
  128. if (resource != null) {
  129. try{
  130. HttpConnection connection = Utilities.makeConnection(resource.getUrl(), resource.getRequestHeaders(), null, null);
  131. resource.setHttpConnection(connection);
  132. // signal to the browser field that resource is ready
  133. if (_browserField != null) {
  134. //synchronized (RhodesApplication.getEventLock())
  135. {
  136. _browserField.resourceReady(resource);
  137. }
  138. if (_imageQueue.size() == 0)
  139. {
  140. synchronized (RhodesApplication.getEventLock())
  141. {
  142. RhodesApplication.getInstance().invalidateMainScreen();
  143. }
  144. }
  145. }
  146. }catch(Exception exc)
  147. {
  148. LOG.ERROR("SecondaryResourceFetchThread failed.", exc);
  149. }
  150. }
  151. }
  152. }
  153. }