You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cloudstack.apache.org by hu...@apache.org on 2014/09/19 14:47:26 UTC

[1/2] git commit: updated refs/heads/bugfix/CID-1114591 to 2df41e8

Repository: cloudstack
Updated Branches:
  refs/heads/bugfix/CID-1114591 [created] 2df41e857


CID-1114591 Replace duplicated functionality with a call to super like the other state classes


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/9cfab9b8
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/9cfab9b8
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/9cfab9b8

Branch: refs/heads/bugfix/CID-1114591
Commit: 9cfab9b8156087f275947a9a957f32fc6f5a2355
Parents: 90df7cf
Author: Hugo Trippaers <ht...@schubergphilis.com>
Authored: Fri Sep 19 14:42:20 2014 +0200
Committer: Hugo Trippaers <ht...@schubergphilis.com>
Committed: Fri Sep 19 14:42:20 2014 +0200

----------------------------------------------------------------------
 .../storage/download/DownloadActiveState.java   | 46 +++++++++-----------
 1 file changed, 21 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/9cfab9b8/server/src/com/cloud/storage/download/DownloadActiveState.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/storage/download/DownloadActiveState.java b/server/src/com/cloud/storage/download/DownloadActiveState.java
index 59709f2..9a22eb8 100644
--- a/server/src/com/cloud/storage/download/DownloadActiveState.java
+++ b/server/src/com/cloud/storage/download/DownloadActiveState.java
@@ -35,39 +35,35 @@ public abstract class DownloadActiveState extends DownloadState {
             s_logger.trace("handleAnswer, answer status=" + answer.getDownloadStatus() + ", curr state=" + getName());
         }
         switch (answer.getDownloadStatus()) {
-            case DOWNLOAD_IN_PROGRESS:
-                getDownloadListener().scheduleStatusCheck(RequestType.GET_STATUS);
-                return Status.DOWNLOAD_IN_PROGRESS.toString();
-            case DOWNLOADED:
-                getDownloadListener().cancelTimeoutTask();
-                return Status.DOWNLOADED.toString();
-            case NOT_DOWNLOADED:
-                getDownloadListener().scheduleStatusCheck(RequestType.GET_STATUS);
-                return Status.NOT_DOWNLOADED.toString();
-            case DOWNLOAD_ERROR:
-                getDownloadListener().cancelStatusTask();
-                getDownloadListener().cancelTimeoutTask();
-                return Status.DOWNLOAD_ERROR.toString();
-            case UNKNOWN:
-                getDownloadListener().cancelStatusTask();
-                getDownloadListener().cancelTimeoutTask();
-                return Status.DOWNLOAD_ERROR.toString();
-            default:
-                return null;
+        case DOWNLOAD_IN_PROGRESS:
+            getDownloadListener().scheduleStatusCheck(RequestType.GET_STATUS);
+            return Status.DOWNLOAD_IN_PROGRESS.toString();
+        case DOWNLOADED:
+            getDownloadListener().cancelTimeoutTask();
+            return Status.DOWNLOADED.toString();
+        case NOT_DOWNLOADED:
+            getDownloadListener().scheduleStatusCheck(RequestType.GET_STATUS);
+            return Status.NOT_DOWNLOADED.toString();
+        case DOWNLOAD_ERROR:
+            getDownloadListener().cancelStatusTask();
+            getDownloadListener().cancelTimeoutTask();
+            return Status.DOWNLOAD_ERROR.toString();
+        case UNKNOWN:
+            getDownloadListener().cancelStatusTask();
+            getDownloadListener().cancelTimeoutTask();
+            return Status.DOWNLOAD_ERROR.toString();
+        default:
+            return null;
         }
     }
 
     @Override
     public void onEntry(String prevState, DownloadEvent event, Object evtObj) {
-        if (s_logger.isTraceEnabled()) {
-            getDownloadListener().log("onEntry, prev state= " + prevState + ", curr state=" + getName() + ", event=" + event, Level.TRACE);
-        }
+        super.onEntry(prevState, event, evtObj);
 
         if (event == DownloadEvent.DOWNLOAD_ANSWER) {
-            getDownloadListener().callback((DownloadAnswer)evtObj);
             getDownloadListener().setLastUpdated();
         }
-
     }
 
     @Override
@@ -79,7 +75,7 @@ public abstract class DownloadActiveState extends DownloadState {
         if (s_logger.isTraceEnabled()) {
             getDownloadListener().log("handleTimeout, updateMs=" + updateMs + ", curr state= " + getName(), Level.TRACE);
         }
-        String newState = this.getName();
+        String newState = getName();
         if (updateMs > 5 * DownloadListener.STATUS_POLL_INTERVAL) {
             newState = Status.DOWNLOAD_ERROR.toString();
             getDownloadListener().log("timeout: transitioning to download error state, currstate=" + getName(), Level.DEBUG);


[2/2] git commit: updated refs/heads/bugfix/CID-1114591 to 2df41e8

Posted by hu...@apache.org.
CID-1114592 Replaced duplicate code with a call to super


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/2df41e85
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/2df41e85
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/2df41e85

Branch: refs/heads/bugfix/CID-1114591
Commit: 2df41e857ec9d1398567c3dae3bd8a60f5a82759
Parents: 9cfab9b
Author: Hugo Trippaers <ht...@schubergphilis.com>
Authored: Fri Sep 19 14:45:13 2014 +0200
Committer: Hugo Trippaers <ht...@schubergphilis.com>
Committed: Fri Sep 19 14:47:13 2014 +0200

----------------------------------------------------------------------
 .../cloud/storage/upload/UploadActiveState.java | 47 +++++++++-----------
 1 file changed, 22 insertions(+), 25 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/2df41e85/server/src/com/cloud/storage/upload/UploadActiveState.java
----------------------------------------------------------------------
diff --git a/server/src/com/cloud/storage/upload/UploadActiveState.java b/server/src/com/cloud/storage/upload/UploadActiveState.java
index 53bbb75..c5dcc4e 100644
--- a/server/src/com/cloud/storage/upload/UploadActiveState.java
+++ b/server/src/com/cloud/storage/upload/UploadActiveState.java
@@ -45,26 +45,26 @@ public abstract class UploadActiveState extends UploadState {
             s_logger.debug("handleAnswer, answer status=" + answer.getUploadStatus() + ", curr state=" + getName());
         }
         switch (answer.getUploadStatus()) {
-            case UPLOAD_IN_PROGRESS:
-                getUploadListener().scheduleStatusCheck(RequestType.GET_STATUS);
-                return Status.UPLOAD_IN_PROGRESS.toString();
-            case UPLOADED:
-                getUploadListener().scheduleImmediateStatusCheck(RequestType.PURGE);
-                getUploadListener().cancelTimeoutTask();
-                return Status.UPLOADED.toString();
-            case NOT_UPLOADED:
-                getUploadListener().scheduleStatusCheck(RequestType.GET_STATUS);
-                return Status.NOT_UPLOADED.toString();
-            case UPLOAD_ERROR:
-                getUploadListener().cancelStatusTask();
-                getUploadListener().cancelTimeoutTask();
-                return Status.UPLOAD_ERROR.toString();
-            case UNKNOWN:
-                getUploadListener().cancelStatusTask();
-                getUploadListener().cancelTimeoutTask();
-                return Status.UPLOAD_ERROR.toString();
-            default:
-                return null;
+        case UPLOAD_IN_PROGRESS:
+            getUploadListener().scheduleStatusCheck(RequestType.GET_STATUS);
+            return Status.UPLOAD_IN_PROGRESS.toString();
+        case UPLOADED:
+            getUploadListener().scheduleImmediateStatusCheck(RequestType.PURGE);
+            getUploadListener().cancelTimeoutTask();
+            return Status.UPLOADED.toString();
+        case NOT_UPLOADED:
+            getUploadListener().scheduleStatusCheck(RequestType.GET_STATUS);
+            return Status.NOT_UPLOADED.toString();
+        case UPLOAD_ERROR:
+            getUploadListener().cancelStatusTask();
+            getUploadListener().cancelTimeoutTask();
+            return Status.UPLOAD_ERROR.toString();
+        case UNKNOWN:
+            getUploadListener().cancelStatusTask();
+            getUploadListener().cancelTimeoutTask();
+            return Status.UPLOAD_ERROR.toString();
+        default:
+            return null;
         }
     }
 
@@ -73,7 +73,7 @@ public abstract class UploadActiveState extends UploadState {
         if (s_logger.isTraceEnabled()) {
             getUploadListener().log("handleTimeout, updateMs=" + updateMs + ", curr state= " + getName(), Level.TRACE);
         }
-        String newState = this.getName();
+        String newState = getName();
         if (updateMs > 5 * UploadListener.STATUS_POLL_INTERVAL) {
             newState = Status.UPLOAD_ERROR.toString();
             getUploadListener().log("timeout: transitioning to upload error state, currstate=" + getName(), Level.DEBUG);
@@ -90,12 +90,9 @@ public abstract class UploadActiveState extends UploadState {
 
     @Override
     public void onEntry(String prevState, UploadEvent event, Object evtObj) {
-        if (s_logger.isTraceEnabled()) {
-            getUploadListener().log("onEntry, prev state= " + prevState + ", curr state=" + getName() + ", event=" + event, Level.TRACE);
-        }
+        super.onEntry(prevState, event, evtObj);
 
         if (event == UploadEvent.UPLOAD_ANSWER) {
-            getUploadListener().updateDatabase((UploadAnswer)evtObj);
             getUploadListener().setLastUpdated();
         }