com.linecorp.centraldogma.internal.Util.isValidFilePath()方法的使用及代码示例

x33g5p2x  于2022-02-01 转载在 其他  
字(8.2k)|赞(0)|评价(0)|浏览(205)

本文整理了Java中com.linecorp.centraldogma.internal.Util.isValidFilePath()方法的一些代码示例,展示了Util.isValidFilePath()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Util.isValidFilePath()方法的具体详情如下:
包路径:com.linecorp.centraldogma.internal.Util
类名称:Util
方法名:isValidFilePath

Util.isValidFilePath介绍

暂无

代码示例

代码示例来源:origin: line/centraldogma

  1. public static String validateFilePath(String path, String paramName) {
  2. requireNonNull(path, paramName);
  3. if (isValidFilePath(path)) {
  4. return path;
  5. }
  6. throw new IllegalArgumentException(
  7. paramName + ": " + path + " (expected: " + FILE_PATH_PATTERN.pattern() + ')');
  8. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common

  1. public static String validateFilePath(String path, String paramName) {
  2. requireNonNull(path, paramName);
  3. if (isValidFilePath(path)) {
  4. return path;
  5. }
  6. throw new IllegalArgumentException(
  7. paramName + ": " + path + " (expected: " + FILE_PATH_PATTERN.pattern() + ')');
  8. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-common-shaded

  1. public static String validateFilePath(String path, String paramName) {
  2. requireNonNull(path, paramName);
  3. if (isValidFilePath(path)) {
  4. return path;
  5. }
  6. throw new IllegalArgumentException(
  7. paramName + ": " + path + " (expected: " + FILE_PATH_PATTERN.pattern() + ')');
  8. }

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Normalizes the path according to the following order.
  3. * <ul>
  4. * <li>if the path is {@code null}, empty string or "/", normalize to {@code "/*"}</li>
  5. * <li>if the path is a valid file path, return the path as it is</li>
  6. * <li>if the path is a valid directory path, append "*" at the end</li>
  7. * </ul>
  8. */
  9. private static String normalizePath(String path) {
  10. if (path == null || path.isEmpty() || "/".equals(path)) {
  11. return "/*";
  12. }
  13. if (isValidFilePath(path)) {
  14. return path;
  15. }
  16. if (isValidDirPath(path)) {
  17. if (path.endsWith("/")) {
  18. return path + '*';
  19. } else {
  20. return path + "/*";
  21. }
  22. }
  23. return path;
  24. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server

  1. /**
  2. * Normalizes the path according to the following order.
  3. * <ul>
  4. * <li>if the path is {@code null}, empty string or "/", normalize to {@code "/*"}</li>
  5. * <li>if the path is a valid file path, return the path as it is</li>
  6. * <li>if the path is a valid directory path, append "*" at the end</li>
  7. * </ul>
  8. */
  9. private static String normalizePath(String path) {
  10. if (path == null || path.isEmpty() || "/".equals(path)) {
  11. return "/*";
  12. }
  13. if (isValidFilePath(path)) {
  14. return path;
  15. }
  16. if (isValidDirPath(path)) {
  17. if (path.endsWith("/")) {
  18. return path + '*';
  19. } else {
  20. return path + "/*";
  21. }
  22. }
  23. return path;
  24. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server-shaded

  1. /**
  2. * Normalizes the path according to the following order.
  3. * <ul>
  4. * <li>if the path is {@code null}, empty string or "/", normalize to {@code "/*"}</li>
  5. * <li>if the path is a valid file path, return the path as it is</li>
  6. * <li>if the path is a valid directory path, append "*" at the end</li>
  7. * </ul>
  8. */
  9. private static String normalizePath(String path) {
  10. if (path == null || path.isEmpty() || "/".equals(path)) {
  11. return "/*";
  12. }
  13. if (isValidFilePath(path)) {
  14. return path;
  15. }
  16. if (isValidDirPath(path)) {
  17. if (path.endsWith("/")) {
  18. return path + '*';
  19. } else {
  20. return path + "/*";
  21. }
  22. }
  23. return path;
  24. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server-shaded

  1. /**
  2. * Converts the specified {@code request} to {@link Optional} which contains {@link Query} when
  3. * the request has a valid file path. {@link Optional#EMPTY} otherwise.
  4. */
  5. @Override
  6. public Object convertRequest(ServiceRequestContext ctx, AggregatedHttpMessage request,
  7. Class<?> expectedResultType) throws Exception {
  8. final String path = getPath(ctx);
  9. final Optional<Iterable<String>> jsonPaths = getJsonPaths(ctx);
  10. if (jsonPaths.isPresent()) {
  11. return Optional.of(Query.ofJsonPath(path, jsonPaths.get()));
  12. }
  13. if (isValidFilePath(path)) {
  14. return Optional.of(Query.of(QueryType.IDENTITY, path));
  15. }
  16. return Optional.empty();
  17. }

代码示例来源:origin: line/centraldogma

  1. private static void listFiles(Repository repository, String pathPattern, Revision normalizedRevision,
  2. Map<FindOption<?>, ?> options, CompletableFuture<List<EntryDto<?>>> result) {
  3. repository.find(normalizedRevision, pathPattern, options).handle((entries, thrown) -> {
  4. if (thrown != null) {
  5. result.completeExceptionally(thrown);
  6. return null;
  7. }
  8. // If the pathPattern is a valid file path and the result is a directory, the client forgets to add
  9. // "/*" to the end of the path. So, let's do it and invoke once more.
  10. // This is called once at most, because the pathPattern is not a valid file path anymore.
  11. if (isValidFilePath(pathPattern) && entries.size() == 1 &&
  12. entries.values().iterator().next().type() == DIRECTORY) {
  13. listFiles(repository, pathPattern + "/*", normalizedRevision, options, result);
  14. } else {
  15. result.complete(entries.values().stream()
  16. .map(entry -> convert(repository, entry))
  17. .collect(toImmutableList()));
  18. }
  19. return null;
  20. });
  21. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server

  1. private static void listFiles(Repository repository, String pathPattern, Revision normalizedRevision,
  2. Map<FindOption<?>, ?> options, CompletableFuture<List<EntryDto<?>>> result) {
  3. repository.find(normalizedRevision, pathPattern, options).handle((entries, thrown) -> {
  4. if (thrown != null) {
  5. result.completeExceptionally(thrown);
  6. return null;
  7. }
  8. // If the pathPattern is a valid file path and the result is a directory, the client forgets to add
  9. // "/*" to the end of the path. So, let's do it and invoke once more.
  10. // This is called once at most, because the pathPattern is not a valid file path anymore.
  11. if (isValidFilePath(pathPattern) && entries.size() == 1 &&
  12. entries.values().iterator().next().type() == DIRECTORY) {
  13. listFiles(repository, pathPattern + "/*", normalizedRevision, options, result);
  14. } else {
  15. result.complete(entries.values().stream()
  16. .map(entry -> convert(repository, entry))
  17. .collect(toImmutableList()));
  18. }
  19. return null;
  20. });
  21. }

代码示例来源:origin: line/centraldogma

  1. /**
  2. * Converts the specified {@code request} to {@link Optional} which contains {@link Query} when
  3. * the request has a valid file path. {@link Optional#EMPTY} otherwise.
  4. */
  5. @Override
  6. public Object convertRequest(ServiceRequestContext ctx, AggregatedHttpMessage request,
  7. Class<?> expectedResultType) throws Exception {
  8. final String path = getPath(ctx);
  9. final Optional<Iterable<String>> jsonPaths = getJsonPaths(ctx);
  10. if (jsonPaths.isPresent()) {
  11. return Optional.of(Query.ofJsonPath(path, jsonPaths.get()));
  12. }
  13. if (isValidFilePath(path)) {
  14. return Optional.of(Query.of(QueryType.IDENTITY, path));
  15. }
  16. return Optional.empty();
  17. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server

  1. /**
  2. * Converts the specified {@code request} to {@link Optional} which contains {@link Query} when
  3. * the request has a valid file path. {@link Optional#EMPTY} otherwise.
  4. */
  5. @Override
  6. public Object convertRequest(ServiceRequestContext ctx, AggregatedHttpMessage request,
  7. Class<?> expectedResultType) throws Exception {
  8. final String path = getPath(ctx);
  9. final Optional<Iterable<String>> jsonPaths = getJsonPaths(ctx);
  10. if (jsonPaths.isPresent()) {
  11. return Optional.of(Query.ofJsonPath(path, jsonPaths.get()));
  12. }
  13. if (isValidFilePath(path)) {
  14. return Optional.of(Query.of(QueryType.IDENTITY, path));
  15. }
  16. return Optional.empty();
  17. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server-shaded

  1. private static void listFiles(Repository repository, String pathPattern, Revision normalizedRevision,
  2. Map<FindOption<?>, ?> options, CompletableFuture<List<EntryDto<?>>> result) {
  3. repository.find(normalizedRevision, pathPattern, options).handle(voidFunction((entries, thrown) -> {
  4. if (thrown != null) {
  5. result.completeExceptionally(thrown);
  6. return;
  7. }
  8. // If the pathPattern is a valid file path and the result is a directory, the client forgets to add
  9. // "/*" to the end of the path. So, let's do it and invoke once more.
  10. // This is called once at most, because the pathPattern is not a valid file path anymore.
  11. if (isValidFilePath(pathPattern) && entries.size() == 1 &&
  12. entries.values().iterator().next().type() == DIRECTORY) {
  13. listFiles(repository, pathPattern + "/*", normalizedRevision, options, result);
  14. } else {
  15. result.complete(entries.values().stream()
  16. .map(entry -> convert(repository, entry))
  17. .collect(toImmutableList()));
  18. }
  19. }));
  20. }

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server-shaded

  1. if (!Util.isValidFilePath(localPath)) {
  2. continue;

代码示例来源:origin: com.linecorp.centraldogma/centraldogma-server

  1. if (!Util.isValidFilePath(localPath)) {
  2. continue;

代码示例来源:origin: line/centraldogma

  1. if (!Util.isValidFilePath(localPath)) {
  2. continue;

相关文章