Search in sources :

Example 1 with ResourceStreamNotFoundException

use of org.apache.wicket.util.resource.ResourceStreamNotFoundException in project wicket by apache.

the class ConcatBundleResource method getResourceStream.

@Override
public IResourceStream getResourceStream() {
    List<IResourceStream> resources = collectResourceStreams();
    if (resources == null) {
        return null;
    }
    byte[] bytes;
    try {
        bytes = readAllResources(resources);
    } catch (IOException e) {
        return null;
    } catch (ResourceStreamNotFoundException e) {
        return null;
    }
    final String contentType = findContentType(resources);
    final Time lastModified = findLastModified(resources);
    final ByteArrayInputStream inputStream = new ByteArrayInputStream(bytes);
    final long length = bytes.length;
    AbstractResourceStream ret = new AbstractResourceStream() {

        private static final long serialVersionUID = 1L;

        @Override
        public InputStream getInputStream() throws ResourceStreamNotFoundException {
            return inputStream;
        }

        @Override
        public Bytes length() {
            return Bytes.bytes(length);
        }

        @Override
        public String getContentType() {
            return contentType;
        }

        @Override
        public Time lastModifiedTime() {
            return lastModified;
        }

        @Override
        public void close() throws IOException {
            inputStream.close();
        }
    };
    return ret;
}
Also used : AbstractResourceStream(org.apache.wicket.util.resource.AbstractResourceStream) IResourceStream(org.apache.wicket.util.resource.IResourceStream) ByteArrayInputStream(java.io.ByteArrayInputStream) Time(org.apache.wicket.util.time.Time) IOException(java.io.IOException) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException)

Example 2 with ResourceStreamNotFoundException

use of org.apache.wicket.util.resource.ResourceStreamNotFoundException in project webanno by webanno.

the class AgreementTable method makeDownloadBehavior.

private Behavior makeDownloadBehavior(final String aKey1, final String aKey2) {
    return new AjaxEventBehavior("click") {

        private static final long serialVersionUID = 1L;

        @Override
        protected void onEvent(AjaxRequestTarget aTarget) {
            AJAXDownload download = new AJAXDownload() {

                private static final long serialVersionUID = 1L;

                @Override
                protected IResourceStream getResourceStream() {
                    return new AbstractResourceStream() {

                        private static final long serialVersionUID = 1L;

                        @Override
                        public InputStream getInputStream() throws ResourceStreamNotFoundException {
                            try {
                                AgreementResult result = AgreementTable.this.getModelObject().getStudy(aKey1, aKey2);
                                switch(settings.getObject().exportFormat) {
                                    case CSV:
                                        return AgreementUtils.generateCsvReport(result);
                                    case DEBUG:
                                        return generateDebugReport(result);
                                    default:
                                        throw new IllegalStateException("Unknown export format [" + settings.getObject().exportFormat + "]");
                                }
                            } catch (Exception e) {
                                // FIXME Is there some better error handling here?
                                LOG.error("Unable to generate agreement report", e);
                                throw new ResourceStreamNotFoundException(e);
                            }
                        }

                        @Override
                        public void close() throws IOException {
                        // Nothing to do
                        }
                    };
                }
            };
            getComponent().add(download);
            download.initiate(aTarget, "agreement" + settings.getObject().exportFormat.getExtension());
        }
    };
}
Also used : AjaxRequestTarget(org.apache.wicket.ajax.AjaxRequestTarget) AgreementResult(de.tudarmstadt.ukp.clarin.webanno.curation.agreement.AgreementUtils.AgreementResult) AbstractResourceStream(org.apache.wicket.util.resource.AbstractResourceStream) AjaxEventBehavior(org.apache.wicket.ajax.AjaxEventBehavior) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException) IOException(java.io.IOException) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException) AJAXDownload(de.tudarmstadt.ukp.clarin.webanno.support.AJAXDownload)

Example 3 with ResourceStreamNotFoundException

use of org.apache.wicket.util.resource.ResourceStreamNotFoundException in project openmeetings by apache.

the class LangPanel method onInitialize.

@Override
protected void onInitialize() {
    // Create feedback panels
    add(feedback.setOutputMarkupId(true));
    language = new AbstractMap.SimpleEntry<>(1L, Locale.ENGLISH);
    final LabelsForm form = new LabelsForm("form", this, new StringLabel(null, null));
    form.showNewRecord();
    add(form);
    final SearchableDataView<StringLabel> dataView = new SearchableDataView<StringLabel>("langList", new SearchableDataProvider<StringLabel>(LabelDao.class) {

        private static final long serialVersionUID = 1L;

        @Override
        public long size() {
            return LabelDao.count(language.getValue(), search);
        }

        @Override
        public Iterator<? extends StringLabel> iterator(long first, long count) {
            return LabelDao.get(language.getValue(), search, (int) first, (int) count, getSort()).iterator();
        }
    }) {

        private static final long serialVersionUID = 1L;

        @Override
        protected void populateItem(final Item<StringLabel> item) {
            final StringLabel fv = item.getModelObject();
            item.add(new Label("key"));
            item.add(new Label("value"));
            item.add(new AjaxEventBehavior(EVT_CLICK) {

                private static final long serialVersionUID = 1L;

                @Override
                protected void onEvent(AjaxRequestTarget target) {
                    form.setModelObject(fv);
                    form.hideNewRecord();
                    target.add(form, listContainer);
                    reinitJs(target);
                }
            });
            item.add(AttributeModifier.append(ATTR_CLASS, getRowClass(fv.getId(), form.getModelObject().getId())));
        }
    };
    add(listContainer.add(dataView).setOutputMarkupId(true));
    PagedEntityListPanel navigator = new PagedEntityListPanel("navigator", dataView) {

        private static final long serialVersionUID = 1L;

        @Override
        protected void onEvent(AjaxRequestTarget target) {
            dataView.modelChanging();
            target.add(listContainer);
        }
    };
    DataViewContainer<StringLabel> container = new DataViewContainer<>(listContainer, dataView, navigator);
    container.addLink(new OmOrderByBorder<>("orderByName", "key", container)).addLink(new OmOrderByBorder<>("orderByValue", "value", container));
    add(container.getLinks());
    add(navigator);
    langForm = new LangForm("langForm", listContainer, this);
    langForm.add(fileUploadField);
    langForm.add(new UploadProgressBar("progress", langForm, fileUploadField));
    fileUploadField.add(new AjaxFormSubmitBehavior(langForm, "change") {

        private static final long serialVersionUID = 1L;

        @Override
        protected void onSubmit(AjaxRequestTarget target) {
            FileUpload download = fileUploadField.getFileUpload();
            try {
                if (download == null || download.getInputStream() == null) {
                    feedback.error("File is empty");
                    return;
                }
                LabelDao.upload(language.getValue(), download.getInputStream());
            } catch (Exception e) {
                log.error("Exception on panel language editor import ", e);
                feedback.error(e);
            }
            // repaint the feedback panel so that it is hidden
            target.add(listContainer, feedback);
        }
    });
    // Add a component to download a file without page refresh
    final AjaxDownloadBehavior download = new AjaxDownloadBehavior(new ResourceStreamResource() {

        private static final long serialVersionUID = 1L;

        {
            setContentDisposition(ATTACHMENT);
            setCacheDuration(NONE);
        }

        @Override
        protected IResourceStream getResourceStream(Attributes attributes) {
            final String name = LabelDao.getLabelFileName(language.getValue());
            setFileName(name);
            return new AbstractResourceStream() {

                private static final long serialVersionUID = 1L;

                private transient InputStream is;

                @Override
                public InputStream getInputStream() throws ResourceStreamNotFoundException {
                    try {
                        is = Application.class.getResourceAsStream(name);
                        return is;
                    } catch (Exception e) {
                        throw new ResourceStreamNotFoundException(e);
                    }
                }

                @Override
                public void close() throws IOException {
                    if (is != null) {
                        is.close();
                        is = null;
                    }
                }
            };
        }
    });
    langForm.add(download);
    langForm.add(new AjaxButton("export") {

        private static final long serialVersionUID = 1L;

        @Override
        protected void onSubmit(AjaxRequestTarget target) {
            download.initiate(target);
            // repaint the feedback panel so that it is hidden
            target.add(feedback);
        }

        @Override
        protected void onError(AjaxRequestTarget target) {
            // repaint the feedback panel so errors are shown
            target.add(feedback);
        }
    });
    add(langForm);
    final AddLanguageDialog addLang = new AddLanguageDialog("addLang", this);
    add(addLang, new AjaxLink<Void>("addLangBtn") {

        private static final long serialVersionUID = 1L;

        @Override
        public void onClick(AjaxRequestTarget target) {
            addLang.open(target);
        }
    });
    add(BootstrapFileUploadBehavior.INSTANCE);
    add(new ConfirmableAjaxBorder("deleteLangBtn", getString("80"), getString("833")) {

        private static final long serialVersionUID = 1L;

        @Override
        protected void onSubmit(AjaxRequestTarget target) {
            LabelDao.delete(language.getValue());
            List<Map.Entry<Long, Locale>> langs = LangForm.getLanguages();
            language = langs.isEmpty() ? null : langs.get(0);
            langForm.updateLanguages(target);
            target.add(listContainer);
        }
    });
    super.onInitialize();
}
Also used : Locale(java.util.Locale) StringLabel(org.apache.openmeetings.db.entity.label.StringLabel) Label(org.apache.wicket.markup.html.basic.Label) StringLabel(org.apache.openmeetings.db.entity.label.StringLabel) LabelDao(org.apache.openmeetings.db.dao.label.LabelDao) AbstractMap(java.util.AbstractMap) SearchableDataView(org.apache.openmeetings.web.admin.SearchableDataView) Item(org.apache.wicket.markup.repeater.Item) AjaxFormSubmitBehavior(org.apache.wicket.ajax.form.AjaxFormSubmitBehavior) AjaxButton(com.googlecode.wicket.jquery.ui.form.button.AjaxButton) ResourceStreamResource(org.apache.wicket.request.resource.ResourceStreamResource) Iterator(java.util.Iterator) List(java.util.List) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException) UploadProgressBar(org.apache.wicket.extensions.ajax.markup.html.form.upload.UploadProgressBar) FileUpload(org.apache.wicket.markup.html.form.upload.FileUpload) AbstractResourceStream(org.apache.wicket.util.resource.AbstractResourceStream) AjaxEventBehavior(org.apache.wicket.ajax.AjaxEventBehavior) IResourceStream(org.apache.wicket.util.resource.IResourceStream) InputStream(java.io.InputStream) ConfirmableAjaxBorder(org.apache.openmeetings.web.common.ConfirmableAjaxBorder) IOException(java.io.IOException) IOException(java.io.IOException) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException) AjaxRequestTarget(org.apache.wicket.ajax.AjaxRequestTarget) PagedEntityListPanel(org.apache.openmeetings.web.common.PagedEntityListPanel) OmOrderByBorder(org.apache.openmeetings.web.data.OmOrderByBorder) Map(java.util.Map) AbstractMap(java.util.AbstractMap) DataViewContainer(org.apache.openmeetings.web.data.DataViewContainer) AjaxDownloadBehavior(org.apache.wicket.extensions.ajax.AjaxDownloadBehavior)

Example 4 with ResourceStreamNotFoundException

use of org.apache.wicket.util.resource.ResourceStreamNotFoundException in project wicket by apache.

the class UrlResourceStream method getInputStream.

/**
 * @return A readable input stream for this resource.
 * @throws ResourceStreamNotFoundException
 */
@Override
public InputStream getInputStream() throws ResourceStreamNotFoundException {
    try {
        StreamData data = getData(true);
        InputStream is = data.connection.getInputStream();
        if (data.inputStreams == null) {
            data.inputStreams = new ArrayList<>();
        }
        data.inputStreams.add(is);
        return is;
    } catch (IOException e) {
        throw new ResourceStreamNotFoundException("Resource " + url + " could not be opened", e);
    }
}
Also used : InputStream(java.io.InputStream) IOException(java.io.IOException) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException)

Example 5 with ResourceStreamNotFoundException

use of org.apache.wicket.util.resource.ResourceStreamNotFoundException in project webanno by webanno.

the class TempFileResource method getInputStream.

@Override
public InputStream getInputStream() throws ResourceStreamNotFoundException {
    // Write the data to the temporary file
    try {
        tempFile = File.createTempFile("inception-temp", "");
        tempFile.deleteOnExit();
        try (FileOutputStream os = new FileOutputStream(tempFile)) {
            supplier.write(os);
        }
    } catch (IOException e) {
        deleteTempFile();
        throw new ResourceStreamNotFoundException(e);
    }
    // Return a stream for the file
    try {
        is = new FileInputStream(tempFile);
        return is;
    } catch (Exception e) {
        IOUtils.closeQuietly(is);
        deleteTempFile();
        throw new ResourceStreamNotFoundException(e);
    }
}
Also used : FileOutputStream(java.io.FileOutputStream) IOException(java.io.IOException) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException) FileInputStream(java.io.FileInputStream) ResourceStreamNotFoundException(org.apache.wicket.util.resource.ResourceStreamNotFoundException) IOException(java.io.IOException)

Aggregations

ResourceStreamNotFoundException (org.apache.wicket.util.resource.ResourceStreamNotFoundException)16 IOException (java.io.IOException)15 InputStream (java.io.InputStream)7 IResourceStream (org.apache.wicket.util.resource.IResourceStream)7 AbstractResourceStream (org.apache.wicket.util.resource.AbstractResourceStream)4 Time (org.apache.wicket.util.time.Time)4 WicketRuntimeException (org.apache.wicket.WicketRuntimeException)3 ByteArrayInputStream (java.io.ByteArrayInputStream)2 FileInputStream (java.io.FileInputStream)2 ServletContext (javax.servlet.ServletContext)2 AjaxEventBehavior (org.apache.wicket.ajax.AjaxEventBehavior)2 AjaxRequestTarget (org.apache.wicket.ajax.AjaxRequestTarget)2 WebApplication (org.apache.wicket.protocol.http.WebApplication)2 AjaxButton (com.googlecode.wicket.jquery.ui.form.button.AjaxButton)1 AgreementResult (de.tudarmstadt.ukp.clarin.webanno.curation.agreement.AgreementUtils.AgreementResult)1 AJAXDownload (de.tudarmstadt.ukp.clarin.webanno.support.AJAXDownload)1 BufferedInputStream (java.io.BufferedInputStream)1 File (java.io.File)1 FileOutputStream (java.io.FileOutputStream)1 AbstractMap (java.util.AbstractMap)1