Skip to content

Commit

Permalink
Prepare version storage
Browse files Browse the repository at this point in the history
  • Loading branch information
afranken committed Jun 9, 2024
1 parent 4e4b8d4 commit 5790298
Show file tree
Hide file tree
Showing 3 changed files with 83 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public class ObjectStore extends StoreBase {
private static final Logger LOG = LoggerFactory.getLogger(ObjectStore.class);
private static final String META_FILE = "objectMetadata.json";
private static final String DATA_FILE = "binaryData";
private static final String VERSIONS_FILE = "versions.json";

/**
* This map stores one lock object per S3Object ID.
Expand Down Expand Up @@ -471,11 +472,11 @@ private Path getObjectFolderPath(BucketMetadata bucket, UUID id) {
}

private Path getMetaFilePath(BucketMetadata bucket, UUID id) {
return Paths.get(getObjectFolderPath(bucket, id).toString(), META_FILE);
return getObjectFolderPath(bucket, id).resolve(META_FILE);
}

private Path getDataFilePath(BucketMetadata bucket, UUID id) {
return Paths.get(getObjectFolderPath(bucket, id).toString(), DATA_FILE);
return getObjectFolderPath(bucket, id).resolve(DATA_FILE);
}

private void writeMetafile(BucketMetadata bucket, S3ObjectMetadata s3ObjectMetadata) {
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
/*
* Copyright 2017-2024 Adobe.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.adobe.testing.s3mock.store;

import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import java.util.concurrent.atomic.AtomicInteger;

public record S3ObjectVersions(
UUID id,
Map<Integer, String> versions,
AtomicInteger latestVersionPointer
) {

public S3ObjectVersions(UUID id) {
this(id, new HashMap<>(), new AtomicInteger(0));
}

public String createVersion() {
String versionId = UUID.randomUUID().toString();
versions.put(latestVersionPointer.incrementAndGet(), versionId);
return versionId;
}

public String getLatestVersion() {
return versions.get(latestVersionPointer.get());
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
/*
* Copyright 2017-2024 Adobe.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.adobe.testing.s3mock.store;

import static org.assertj.core.api.Assertions.assertThat;

import java.util.UUID;
import org.junit.jupiter.api.Test;

class S3ObjectVersionsTest {

@Test
void testVersions() {
var iut = new S3ObjectVersions(UUID.randomUUID());
assertThat(iut.getLatestVersion()).isNull();
assertThat(iut.latestVersionPointer().get()).isZero();

var version = iut.createVersion();
assertThat(version).isNotBlank();
assertThat(iut.latestVersionPointer().get()).isOne();
assertThat(iut.getLatestVersion()).isEqualTo(version);
}
}

0 comments on commit 5790298

Please sign in to comment.