]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - eclipse/runtime/org.argeo.eclipse.ui.rap/src/main/java/org/argeo/eclipse/ui/specific/GenericUploadControl.java
Update license headers
[lgpl/argeo-commons.git] / eclipse / runtime / org.argeo.eclipse.ui.rap / src / main / java / org / argeo / eclipse / ui / specific / GenericUploadControl.java
index 6fcd21a89eca47304c8985cb9d4b13343976a062..13e695d39d1c253517a3ca9645a76d627590d7bb 100644 (file)
@@ -1,3 +1,18 @@
+/*
+ * Copyright (C) 2007-2012 Mathieu Baudier
+ *
+ * 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 org.argeo.eclipse.ui.specific;
 
 import java.io.InputStream;
@@ -36,6 +51,14 @@ public class GenericUploadControl extends Composite {
                parent.pack();
        }
 
+       /**
+        * Wrap upload.getLastFileUploaded(). Gets the name of the last uploaded
+        * file. This method can be called even if the upload has not finished yet.
+        */
+       public String getLastFileUploadedName() {
+               return upload.getLastFileUploaded();
+       }
+
        public boolean isControlEmpty() {
                String path = upload.getPath();
                if (log.isTraceEnabled())
@@ -49,6 +72,11 @@ public class GenericUploadControl extends Composite {
        public byte[] performUpload() {
                boolean success = upload.performUpload();
                if (success) {
+                       if (upload.getUploadItem().getFileSize() == -1)
+                               throw new ArgeoException("File "
+                                               + upload.getUploadItem().getFileName()
+                                               + " has not been uploaded, its size is -1");
+
                        InputStream inStream = null;
                        byte[] fileBA = null;
                        try {