From f6a67a8400e12de6e0ae83d0b4c744e07fc4901c Mon Sep 17 00:00:00 2001 From: Jakob Odersky Date: Mon, 19 Jun 2017 11:40:34 -0700 Subject: Check for null values in gcs directory listing GCS: when listing, always assume the path is a directory GCS: fix unit test --- .../scala/xyz/driver/core/file/GcsStorage.scala | 22 ++++++++++++++-------- src/main/scala/xyz/driver/core/file/package.scala | 3 ++- 2 files changed, 16 insertions(+), 9 deletions(-) (limited to 'src/main/scala/xyz') diff --git a/src/main/scala/xyz/driver/core/file/GcsStorage.scala b/src/main/scala/xyz/driver/core/file/GcsStorage.scala index 6c2746e..0d8b918 100644 --- a/src/main/scala/xyz/driver/core/file/GcsStorage.scala +++ b/src/main/scala/xyz/driver/core/file/GcsStorage.scala @@ -52,24 +52,30 @@ class GcsStorage(storageClient: Storage, bucketName: Name[Bucket], executionCont storageClient.delete(BlobId.of(bucketName.value, filePath.toString)) } - override def list(path: Path): ListT[Future, FileLink] = + override def list(directoryPath: Path): ListT[Future, FileLink] = ListT.listT(Future { val page = storageClient.list( bucketName.value, BlobListOption.currentDirectory(), - BlobListOption.prefix(path.toString) + BlobListOption.prefix(s"$directoryPath/") ) - page.iterateAll().asScala.map(blobToFileLink(path, _)).toList + page.iterateAll().asScala.map(blobToFileLink(directoryPath, _)).toList }) protected def blobToFileLink(path: Path, blob: Blob): FileLink = { + def nullError(property: String) = throw new IllegalStateException(s"Blob $blob at $path does not have $property") + val name = Option(blob.getName).getOrElse(nullError("a name")) + val generation = Option(blob.getGeneration).getOrElse(nullError("a generation")) + val updateTime = Option(blob.getUpdateTime).getOrElse(nullError("an update time")) + val size = Option(blob.getSize).getOrElse(nullError("a size")) + FileLink( - Name(blob.getName), - Paths.get(path.toString, blob.getName), - Revision(blob.getGeneration.toString), - Time(blob.getUpdateTime), - blob.getSize + Name(name), + Paths.get(path.toString, name), + Revision(generation.toString), + Time(updateTime), + size ) } diff --git a/src/main/scala/xyz/driver/core/file/package.scala b/src/main/scala/xyz/driver/core/file/package.scala index 9000894..7203207 100644 --- a/src/main/scala/xyz/driver/core/file/package.scala +++ b/src/main/scala/xyz/driver/core/file/package.scala @@ -37,7 +37,8 @@ package file { def delete(filePath: Path): Future[Unit] - def list(path: Path): ListT[Future, FileLink] + /** List contents of a directory */ + def list(directoryPath: Path): ListT[Future, FileLink] /** List of characters to avoid in S3 (I would say file names in general) * -- cgit v1.2.3