#8630 use try-with-resources to close used resources

This commit is contained in:
Mohamed Karray
2018-08-31 09:55:45 +02:00
parent 2420c9141c
commit ed98d04be4
5 changed files with 80 additions and 132 deletions

View File

@@ -140,7 +140,7 @@ public final class BundleCommandBuilder
throws IOException throws IOException
{ {
checkNotNull(sink, "byte sink is required"); checkNotNull(sink, "byte sink is required");
logger.info("bundle {} to byte sink"); logger.info("bundle {} to byte sink", sink);
return bundleCommand.bundle(new BundleCommandRequest(sink)); return bundleCommand.bundle(new BundleCommandRequest(sink));
} }

View File

@@ -1,19 +1,19 @@
/** /**
* Copyright (c) 2010, Sebastian Sdorra * Copyright (c) 2010, Sebastian Sdorra
* All rights reserved. * All rights reserved.
* * <p>
* Redistribution and use in source and binary forms, with or without * Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met: * modification, are permitted provided that the following conditions are met:
* * <p>
* 1. Redistributions of source code must retain the above copyright notice, * 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer. * this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice, * 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation * this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution. * and/or other materials provided with the distribution.
* 3. Neither the name of SCM-Manager; nor the names of its * 3. Neither the name of SCM-Manager; nor the names of its
* contributors may be used to endorse or promote products derived from this * contributors may be used to endorse or promote products derived from this
* software without specific prior written permission. * software without specific prior written permission.
* * <p>
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
@@ -24,96 +24,49 @@
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* * <p>
* http://bitbucket.org/sdorra/scm-manager * http://bitbucket.org/sdorra/scm-manager
*
*/ */
package sonia.scm.repository; package sonia.scm.repository;
//~--- non-JDK imports --------------------------------------------------------
import sonia.scm.util.Util; import sonia.scm.util.Util;
//~--- JDK imports ------------------------------------------------------------
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.Scanner; import java.util.Scanner;
/** /**
*
* @author Sebastian Sdorra * @author Sebastian Sdorra
*/ */
public final class GitSubModuleParser public final class GitSubModuleParser {
{
/** private GitSubModuleParser() {
* Constructs ... }
*
*/
private GitSubModuleParser() {}
//~--- methods -------------------------------------------------------------- public static Map<String, SubRepository> parse(String content) {
Map<String, SubRepository> subRepositories = new HashMap<>();
/** try (Scanner scanner = new Scanner(content)) {
* //~--- methods -------------------------------------------------------------- SubRepository repository = null;
* while (scanner.hasNextLine()) {
* String line = scanner.nextLine();
* Method description if (Util.isNotEmpty(line)) {
* line = line.trim();
* if (line.startsWith("[") && line.endsWith("]")) {
* @param content repository = new SubRepository();
* } else if (line.startsWith("path")) {
* @return subRepositories.put(getValue(line), repository);
*/ } else if (line.startsWith("url")) {
public static Map<String, SubRepository> parse(String content) repository.setRepositoryUrl(getValue(line));
{ }
Map<String, SubRepository> subRepositories = new HashMap<String,
SubRepository>();
Scanner scanner = new Scanner(content);
SubRepository repository = null;
while (scanner.hasNextLine())
{
String line = scanner.nextLine();
if (Util.isNotEmpty(line))
{
line = line.trim();
if (line.startsWith("[") && line.endsWith("]"))
{
repository = new SubRepository();
}
else if (line.startsWith("path"))
{
subRepositories.put(getValue(line), repository);
}
else if (line.startsWith("url"))
{
repository.setRepositoryUrl(getValue(line));
} }
} }
} }
return subRepositories; return subRepositories;
} }
//~--- get methods ---------------------------------------------------------- private static String getValue(String line) {
/**
* Method description
*
*
* @param line
*
* @return
*/
private static String getValue(String line)
{
return line.split("=")[1].trim(); return line.split("=")[1].trim();
} }
} }

View File

@@ -47,10 +47,9 @@ public class BranchRootResource {
* *
* <strong>Note:</strong> This method requires "repository" privilege. * <strong>Note:</strong> This method requires "repository" privilege.
* *
* @param namespace the namespace of the repository * @param namespace the namespace of the repository
* @param name the name of the repository * @param name the name of the repository
* @param branchName the name of the branch * @param branchName the name of the branch
*
*/ */
@GET @GET
@Path("{branch}") @Path("{branch}")
@@ -98,19 +97,20 @@ public class BranchRootResource {
@PathParam("branch") String branchName, @PathParam("branch") String branchName,
@DefaultValue("0") @QueryParam("page") int page, @DefaultValue("0") @QueryParam("page") int page,
@DefaultValue("10") @QueryParam("pageSize") int pageSize) throws Exception { @DefaultValue("10") @QueryParam("pageSize") int pageSize) throws Exception {
RepositoryService repositoryService = serviceFactory.create(new NamespaceAndName(namespace, name)); try (RepositoryService repositoryService = serviceFactory.create(new NamespaceAndName(namespace, name))) {
Repository repository = repositoryService.getRepository(); Repository repository = repositoryService.getRepository();
RepositoryPermissions.read(repository).check(); RepositoryPermissions.read(repository).check();
ChangesetPagingResult changesets = repositoryService.getLogCommand() ChangesetPagingResult changesets = repositoryService.getLogCommand()
.setPagingStart(page) .setPagingStart(page)
.setPagingLimit(pageSize) .setPagingLimit(pageSize)
.setBranch(branchName) .setBranch(branchName)
.getChangesets(); .getChangesets();
if (changesets != null && changesets.getChangesets() != null) { if (changesets != null && changesets.getChangesets() != null) {
PageResult<Changeset> pageResult = new PageResult<>(changesets.getChangesets(), changesets.getTotal()); PageResult<Changeset> pageResult = new PageResult<>(changesets.getChangesets(), changesets.getTotal());
return Response.ok(changesetCollectionToDtoMapper.map(page, pageSize, pageResult, repository)).build(); return Response.ok(changesetCollectionToDtoMapper.map(page, pageSize, pageResult, repository)).build();
} else { } else {
return Response.ok().build(); return Response.ok().build();
}
} }
} }
@@ -120,8 +120,7 @@ public class BranchRootResource {
* <strong>Note:</strong> This method requires "repository" privilege. * <strong>Note:</strong> This method requires "repository" privilege.
* *
* @param namespace the namespace of the repository * @param namespace the namespace of the repository
* @param name the name of the repository * @param name the name of the repository
*
*/ */
@GET @GET
@Path("") @Path("")

View File

@@ -56,18 +56,19 @@ public class ChangesetRootResource {
@TypeHint(CollectionDto.class) @TypeHint(CollectionDto.class)
public Response getAll(@PathParam("namespace") String namespace, @PathParam("name") String name, @DefaultValue("0") @QueryParam("page") int page, public Response getAll(@PathParam("namespace") String namespace, @PathParam("name") String name, @DefaultValue("0") @QueryParam("page") int page,
@DefaultValue("10") @QueryParam("pageSize") int pageSize) throws IOException, RevisionNotFoundException, RepositoryNotFoundException { @DefaultValue("10") @QueryParam("pageSize") int pageSize) throws IOException, RevisionNotFoundException, RepositoryNotFoundException {
RepositoryService repositoryService = serviceFactory.create(new NamespaceAndName(namespace, name)); try (RepositoryService repositoryService = serviceFactory.create(new NamespaceAndName(namespace, name))) {
Repository repository = repositoryService.getRepository(); Repository repository = repositoryService.getRepository();
RepositoryPermissions.read(repository).check(); RepositoryPermissions.read(repository).check();
ChangesetPagingResult changesets = repositoryService.getLogCommand() ChangesetPagingResult changesets = repositoryService.getLogCommand()
.setPagingStart(page) .setPagingStart(page)
.setPagingLimit(pageSize) .setPagingLimit(pageSize)
.getChangesets(); .getChangesets();
if (changesets != null && changesets.getChangesets() != null) { if (changesets != null && changesets.getChangesets() != null) {
PageResult<Changeset> pageResult = new PageResult<>(changesets.getChangesets(), changesets.getTotal()); PageResult<Changeset> pageResult = new PageResult<>(changesets.getChangesets(), changesets.getTotal());
return Response.ok(changesetCollectionToDtoMapper.map(page, pageSize, pageResult, repository)).build(); return Response.ok(changesetCollectionToDtoMapper.map(page, pageSize, pageResult, repository)).build();
} else { } else {
return Response.ok().build(); return Response.ok().build();
}
} }
} }
@@ -83,18 +84,19 @@ public class ChangesetRootResource {
@TypeHint(ChangesetDto.class) @TypeHint(ChangesetDto.class)
@Path("{id}") @Path("{id}")
public Response get(@PathParam("namespace") String namespace, @PathParam("name") String name, @PathParam("id") String id) throws IOException, RevisionNotFoundException, RepositoryNotFoundException { public Response get(@PathParam("namespace") String namespace, @PathParam("name") String name, @PathParam("id") String id) throws IOException, RevisionNotFoundException, RepositoryNotFoundException {
RepositoryService repositoryService = serviceFactory.create(new NamespaceAndName(namespace, name)); try (RepositoryService repositoryService = serviceFactory.create(new NamespaceAndName(namespace, name))) {
Repository repository = repositoryService.getRepository(); Repository repository = repositoryService.getRepository();
RepositoryPermissions.read(repository).check(); RepositoryPermissions.read(repository).check();
ChangesetPagingResult changesets = repositoryService.getLogCommand() ChangesetPagingResult changesets = repositoryService.getLogCommand()
.setStartChangeset(id) .setStartChangeset(id)
.setEndChangeset(id) .setEndChangeset(id)
.getChangesets(); .getChangesets();
if (changesets != null && changesets.getChangesets() != null && changesets.getChangesets().size() == 1) { if (changesets != null && changesets.getChangesets() != null && changesets.getChangesets().size() == 1) {
PageResult<Changeset> pageResult = new PageResult<>(changesets.getChangesets(), changesets.getTotal()); PageResult<Changeset> pageResult = new PageResult<>(changesets.getChangesets(), changesets.getTotal());
return Response.ok(changesetToChangesetDtoMapper.map(changesets.getChangesets().get(0), repository)).build(); return Response.ok(changesetToChangesetDtoMapper.map(changesets.getChangesets().get(0), repository)).build();
} else { } else {
return Response.status(Response.Status.NOT_FOUND).build(); return Response.status(Response.Status.NOT_FOUND).build();
}
} }
} }
} }

View File

@@ -39,34 +39,27 @@ import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Lists; import com.google.common.collect.Lists;
import com.google.common.collect.Sets; import com.google.common.collect.Sets;
import com.google.common.hash.Hashing; import com.google.common.hash.Hashing;
import org.slf4j.Logger; import org.slf4j.Logger;
import org.slf4j.LoggerFactory; import org.slf4j.LoggerFactory;
import sonia.scm.plugin.ExplodedSmp.PathTransformer; import sonia.scm.plugin.ExplodedSmp.PathTransformer;
//~--- JDK imports ------------------------------------------------------------ import javax.xml.bind.JAXBContext;
import javax.xml.bind.JAXBException;
import java.io.File; import java.io.File;
import java.io.FileNotFoundException; import java.io.FileNotFoundException;
import java.io.IOException; import java.io.IOException;
import java.net.URL; import java.net.URL;
import java.nio.file.DirectoryStream; import java.nio.file.DirectoryStream;
import java.nio.file.DirectoryStream.Filter; import java.nio.file.DirectoryStream.Filter;
import java.nio.file.Files; import java.nio.file.Files;
import java.nio.file.Path; import java.nio.file.Path;
import java.text.SimpleDateFormat; import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
import javax.xml.bind.JAXBContext; //~--- JDK imports ------------------------------------------------------------
import javax.xml.bind.JAXBException;
/** /**
* *
@@ -370,9 +363,10 @@ public final class PluginProcessor
if (Files.exists(libDir)) if (Files.exists(libDir))
{ {
for (Path f : Files.newDirectoryStream(libDir, GLOB_JAR)) try (DirectoryStream<Path> pathDirectoryStream = Files.newDirectoryStream(libDir, GLOB_JAR)) {
{ for (Path f : pathDirectoryStream) {
urls.add(f.toUri().toURL()); urls.add(f.toUri().toURL());
}
} }
} }
@@ -656,7 +650,7 @@ public final class PluginProcessor
break; break;
} }
} }
logger.debug("move installed archive to {}", installed); logger.debug("move installed archive to {}", installed);
Files.move(archive, installed); Files.move(archive, installed);