Skip to main content
summaryrefslogtreecommitdiffstats
blob: a3a81d6a415e7db1588b5b7aaa02be5aa5f0ae40 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
/*******************************************************************************
 * Copyright (c) 2004, 2007 Boeing.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *     Boeing - initial API and implementation
 *******************************************************************************/
package org.eclipse.osee.framework.skynet.core.attribute.utils;

import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URL;
import org.eclipse.osee.framework.core.exception.OseeCoreException;
import org.eclipse.osee.framework.core.exception.OseeDataStoreException;
import org.eclipse.osee.framework.core.exception.OseeExceptions;
import org.eclipse.osee.framework.core.util.HttpProcessor;
import org.eclipse.osee.framework.core.util.HttpProcessor.AcquireResult;
import org.eclipse.osee.framework.jdk.core.util.Lib;
import org.eclipse.osee.framework.skynet.core.attribute.providers.DataStore;

/**
 * @author Roberto E. Escobar
 */
public abstract class AbstractResourceProcessor {

   protected abstract URL getAcquireURL(DataStore dataStore) throws OseeCoreException;

   protected abstract URL getDeleteURL(DataStore dataStore) throws OseeCoreException;

   protected abstract URL getStorageURL(int seed, String name, String extension) throws OseeCoreException;

   public abstract String createStorageName() throws OseeCoreException;

   public void saveResource(int seed, String name, DataStore dataStore) throws OseeCoreException {
      URL url = getStorageURL(seed, name, dataStore.getExtension());
      InputStream inputStream = dataStore.getInputStream();
      try {
         URI uri = HttpProcessor.save(url, inputStream, dataStore.getContentType(), dataStore.getEncoding());
         dataStore.setLocator(uri.toASCIIString());
      } catch (Exception ex) {
         OseeExceptions.wrapAndThrow(ex);
      } finally {
         Lib.close(inputStream);
      }
   }

   public void acquire(DataStore dataStore) throws OseeCoreException {
      URL url = getAcquireURL(dataStore);
      ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
      try {
         AcquireResult result = HttpProcessor.acquire(url, outputStream);
         int code = result.getCode();
         if (code == HttpURLConnection.HTTP_OK) {
            dataStore.setContent(outputStream.toByteArray(), "", result.getContentType(), result.getEncoding());
         } else {
            throw new OseeDataStoreException("Error acquiring resource: [%s] - status code: [%s]; %s",
               dataStore.getLocator(), code, new String(outputStream.toByteArray()));
         }
      } catch (Exception ex) {
         OseeExceptions.wrapAndThrow(ex);
      }
   }

   public void purge(DataStore dataStore) throws OseeCoreException {
      try {
         URL url = getDeleteURL(dataStore);
         String response = HttpProcessor.delete(url);
         if (response != null && response.equals("Deleted: " + dataStore.getLocator())) {
            dataStore.clear();
         }
      } catch (Exception ex) {
         OseeExceptions.wrapAndThrow(ex);
      }
   }
}

Back to the top