added SQS utility for fetching all messages

This commit is contained in:
Adrian Cole 2012-09-21 17:30:23 -07:00
parent 7595718408
commit 737af9d355
6 changed files with 237 additions and 12 deletions

View File

@ -0,0 +1,84 @@
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you 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 org.jclouds.sqs;
import static com.google.common.base.Preconditions.checkNotNull;
import static com.google.common.base.Preconditions.checkState;
import org.jclouds.collect.AdvanceUntilEmptyIterable;
import org.jclouds.javax.annotation.Nullable;
import org.jclouds.sqs.domain.Message;
import org.jclouds.sqs.features.MessageApi;
import org.jclouds.sqs.options.ReceiveMessageOptions;
import com.google.common.annotations.Beta;
import com.google.common.base.Optional;
import com.google.common.base.Supplier;
import com.google.common.collect.FluentIterable;
/**
* Utilities for interacting with SQS
*
* @author Adrian Cole
*/
@Beta
public class SQS {
/**
* Returns an iterable that lazy fetches messages until there are none left.
* Note that this method will make multiple network calls.
*
* @param api
* api targeted at the queue in question
* @param messagesPerPage
* how many messages to receive per request (current max: 10)
* @param options
* controls attributes and visibility options
* @return an iterable that lazy fetches messages until there are none left
*/
public static FluentIterable<Message> receiveAllAtRate(MessageApi api, int messagesPerPage,
ReceiveMessageOptions options) {
return AdvanceUntilEmptyIterable.create(new MoreMessages(api, messagesPerPage, options)).concat();
}
/**
* returns another response of messages on {@link MoreMessages#get}
*
*/
private static class MoreMessages implements Supplier<FluentIterable<Message>> {
private static final ReceiveMessageOptions NO_OPTIONS = new ReceiveMessageOptions();
private MessageApi api;
private int max;
private ReceiveMessageOptions options;
private MoreMessages(MessageApi api, int max, @Nullable ReceiveMessageOptions options) {
this.api = checkNotNull(api, "message api");
checkState(max > 0, "max messages per request must be a positive number");
this.max = max;
this.options = Optional.fromNullable(options).or(NO_OPTIONS);
}
@Override
public FluentIterable<Message> get() {
return api.receive(max, options);
}
}
}

View File

@ -0,0 +1,52 @@
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you 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 org.jclouds.sqs.features;
import static com.google.common.base.Preconditions.checkNotNull;
import org.jclouds.sqs.domain.Message;
import com.google.common.base.Function;
/**
* Utilities for {@link Message}s
*
* @author Adrian Cole
*/
public class Messages {
public static Function<Message, String> toReceiptHandle() {
return ToReceiptHandleFunction.INSTANCE;
}
// enum singleton pattern
private enum ToReceiptHandleFunction implements Function<Message, String> {
INSTANCE;
@Override
public String apply(Message o) {
return checkNotNull(o, "message").getReceiptHandle();
}
@Override
public String toString() {
return "toReceiptHandle";
}
}
}

View File

@ -0,0 +1,88 @@
/**
* Licensed to jclouds, Inc. (jclouds) under one or more
* contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. jclouds licenses this file
* to you 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 org.jclouds.sqs;
import static org.easymock.EasyMock.createMock;
import static org.easymock.EasyMock.expect;
import org.easymock.EasyMock;
import org.jclouds.sqs.domain.Message;
import org.jclouds.sqs.features.MessageApi;
import org.jclouds.sqs.options.ReceiveMessageOptions;
import org.testng.Assert;
import org.testng.annotations.Test;
import com.google.common.collect.FluentIterable;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
/**
* Tests behavior of {@code SQS}.
*
* @author Adrian Cole
*/
@Test(testName = "SQSTest", singleThreaded = true)
public class SQSTest {
/**
* Tests {@link SQS#receiveAllAtRate} where a single response returns all
* results.
*/
@Test
public void testSinglePageResult() throws Exception {
MessageApi messageClient = createMock(MessageApi.class);
ReceiveMessageOptions options = new ReceiveMessageOptions();
FluentIterable<Message> aMessage = FluentIterable.from(ImmutableSet.of(createMock(Message.class)));
FluentIterable<Message> noMessages = FluentIterable.from(ImmutableSet.<Message>of());
expect(messageClient.receive(1, options))
.andReturn(aMessage)
.once();
expect(messageClient.receive(1, options))
.andReturn(noMessages)
.once();
EasyMock.replay(messageClient);
Assert.assertEquals(1, Iterables.size(SQS.receiveAllAtRate(messageClient, 1, options)));
}
/**
* Tests {@link SQS#receiveAllAtRate} where retrieving all results requires multiple requests.
*/
@Test
public void testMultiPageResult() throws Exception {
MessageApi messageClient = createMock(MessageApi.class);
ReceiveMessageOptions options = new ReceiveMessageOptions();
FluentIterable<Message> aMessage = FluentIterable.from(ImmutableSet.of(createMock(Message.class)));
FluentIterable<Message> noMessages = FluentIterable.from(ImmutableSet.<Message>of());
expect(messageClient.receive(1, options))
.andReturn(aMessage)
.times(2);
expect(messageClient.receive(1, options))
.andReturn(noMessages)
.once();
EasyMock.replay(messageClient);
Assert.assertEquals(2, Iterables.size(SQS.receiveAllAtRate(messageClient, 1, options)));
}
}

View File

@ -26,13 +26,13 @@ import java.net.URI;
import java.util.Map.Entry;
import java.util.Set;
import org.jclouds.sqs.SQS;
import org.jclouds.sqs.domain.BatchResult;
import org.jclouds.sqs.domain.Message;
import org.jclouds.sqs.domain.MessageIdAndMD5;
import org.jclouds.sqs.internal.BaseSQSApiLiveTest;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import org.testng.internal.annotations.Sets;
import com.google.common.base.Charsets;
import com.google.common.base.Function;
@ -111,11 +111,7 @@ public class BulkMessageApiLiveTest extends BaseSQSApiLiveTest {
}
protected Set<Message> collectMessages(MessageApi api) {
// you are not guaranteed to get all messages in the same request
Set<Message> messages = Sets.newLinkedHashSet();
while (messages.size() != idPayload.size())
messages.addAll(api.receive(idPayload.size(), attribute("None").visibilityTimeout(5)).toImmutableSet());
return messages;
return SQS.receiveAllAtRate(api, idPayload.size(), attribute("None").visibilityTimeout(5)).toImmutableSet();
}
@Test(dependsOnMethods = "testChangeMessageVisibility")

View File

@ -69,10 +69,17 @@ public class QueueApiLiveTest extends BaseSQSApiLiveTest {
recreateQueueInRegion(prefix, null);
}
@Test(dependsOnMethods = "testCanRecreateQueueGracefully")
public void testCreateQueueWhenAlreadyExistsReturnsURI() {
for (URI queue : queues) {
assertEquals(api().getQueueApi().create(prefix), queue);
}
}
@Test(dependsOnMethods = "testCanRecreateQueueGracefully")
public void testGet() {
for (URI queue : queues) {
assertEquals(queue, api().getQueueApi().get(prefix));
assertEquals(api().getQueueApi().get(prefix), queue);
}
}

View File

@ -19,8 +19,6 @@
package org.jclouds.sqs.internal;
import static com.google.common.collect.Iterables.get;
import static com.google.common.collect.Iterables.getLast;
import static org.jclouds.sqs.options.ListQueuesOptions.Builder.queuePrefix;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
@ -67,9 +65,9 @@ public class BaseSQSApiLiveTest extends BaseContextLiveTest<RestContext<SQSApi,
protected String recreateQueueInRegion(String queueName, String region) {
QueueApi api = api().getQueueApiForRegion(region);
FluentIterable<URI> result = api.list(queuePrefix(queueName));
if (result.size() >= 1) {
api.delete(getLast(result));
URI result = api.get(queueName);
if (result != null) {
api.delete(result);
}
URI queue = api.create(queueName);
assertQueueInList(region, queue);