Search in sources :

Example 11 with FileAlreadyExistsException

use of org.uberfire.java.nio.file.FileAlreadyExistsException in project drools-wb by kiegroup.

the class ScenarioTestEditorServiceImpl method create.

@Override
public Path create(final Path context, final String fileName, final Scenario content, final String comment) {
    try {
        final org.uberfire.java.nio.file.Path nioPath = Paths.convert(context).resolve(fileName);
        final Path newPath = Paths.convert(nioPath);
        if (ioService.exists(nioPath)) {
            throw new FileAlreadyExistsException(nioPath.toString());
        }
        ioService.write(nioPath, ScenarioXMLPersistence.getInstance().marshal(content), commentedOptionFactory.makeCommentedOption(comment));
        return newPath;
    } catch (Exception e) {
        throw ExceptionUtilities.handleException(e);
    }
}
Also used : Path(org.uberfire.backend.vfs.Path) FileAlreadyExistsException(org.uberfire.java.nio.file.FileAlreadyExistsException) FileAlreadyExistsException(org.uberfire.java.nio.file.FileAlreadyExistsException)

Example 12 with FileAlreadyExistsException

use of org.uberfire.java.nio.file.FileAlreadyExistsException in project drools-wb by kiegroup.

the class GlobalsEditorServiceImpl method createInternal.

private Path createInternal(final Path context, final String fileName, final GlobalsModel content, final String comment, final boolean generate) {
    try {
        final Package pkg = moduleService.resolvePackage(context);
        final String packageName = (pkg == null ? null : pkg.getPackageName());
        content.setPackageName(packageName);
        final org.uberfire.java.nio.file.Path nioPath = Paths.convert(context).resolve(fileName);
        final Path newPath = Paths.convert(nioPath);
        if (ioService.exists(nioPath)) {
            throw new FileAlreadyExistsException(nioPath.toString());
        }
        if (generate) {
            Metadata metadata = MetadataBuilder.newMetadata().withGenerated(true).build();
            ioService.write(nioPath, GlobalsPersistence.getInstance().marshal(content), metadataService.configAttrs(new HashMap<>(), metadata), commentedOptionFactory.makeCommentedOption(comment));
        } else {
            ioService.write(nioPath, GlobalsPersistence.getInstance().marshal(content), commentedOptionFactory.makeCommentedOption(comment));
        }
        return newPath;
    } catch (Exception e) {
        throw ExceptionUtilities.handleException(e);
    }
}
Also used : Path(org.uberfire.backend.vfs.Path) FileAlreadyExistsException(org.uberfire.java.nio.file.FileAlreadyExistsException) HashMap(java.util.HashMap) Metadata(org.guvnor.common.services.shared.metadata.model.Metadata) Package(org.guvnor.common.services.project.model.Package) FileAlreadyExistsException(org.uberfire.java.nio.file.FileAlreadyExistsException)

Example 13 with FileAlreadyExistsException

use of org.uberfire.java.nio.file.FileAlreadyExistsException in project drools-wb by kiegroup.

the class DSLTextEditorServiceImpl method create.

@Override
public Path create(final Path context, final String fileName, final String content, final String comment) {
    try {
        final org.uberfire.java.nio.file.Path nioPath = Paths.convert(context).resolve(fileName);
        final Path newPath = Paths.convert(nioPath);
        if (ioService.exists(nioPath)) {
            throw new FileAlreadyExistsException(nioPath.toString());
        }
        ioService.write(nioPath, content, commentedOptionFactory.makeCommentedOption(comment));
        return newPath;
    } catch (Exception e) {
        throw ExceptionUtilities.handleException(e);
    }
}
Also used : Path(org.uberfire.backend.vfs.Path) FileAlreadyExistsException(org.uberfire.java.nio.file.FileAlreadyExistsException) DSLMappingParseException(org.drools.compiler.lang.dsl.DSLMappingParseException) IOException(java.io.IOException) FileAlreadyExistsException(org.uberfire.java.nio.file.FileAlreadyExistsException)

Aggregations

Path (org.uberfire.backend.vfs.Path)13 FileAlreadyExistsException (org.uberfire.java.nio.file.FileAlreadyExistsException)13 Package (org.guvnor.common.services.project.model.Package)6 IOException (java.io.IOException)1 HashMap (java.util.HashMap)1 DSLMappingParseException (org.drools.compiler.lang.dsl.DSLMappingParseException)1 Metadata (org.guvnor.common.services.shared.metadata.model.Metadata)1 Test (org.junit.Test)1 Import (org.kie.soup.project.datamodel.imports.Import)1 SourceGenerationFailedException (org.kie.workbench.common.services.shared.source.SourceGenerationFailedException)1