I have been assigned a project to develop a set of classes that act as an interface to a storage system. A requirement is that the class support a get method with the following signature:
public CustomObject get(String key, Date ifModifiedSince)
Basically the method is supposed to return the CustomObject
associated with the key
if and only if the object has been modified after ifModifiedSince
. If the storage system does not contain the key
then the method should return null.
My problem is this:
How do I handle the scenario where the key exists but the object has not been modified?
This is important because some applications that use this class will be web services and web applications. Those applications will need to know whether to return a 404 (not found), 304 (not modified), or 200 (OK, here's the data).
The solutions I'm weighing are:
- Throw a custom exception when the
storage system does not contain the
key
- Throw a custom exception when the
ifModifiedSince
fails. - Add a status property to the CustomObject. Require caller to check property.
I'm not happy with any of these three options. I don't like options 1 and 2 because I don't like using exceptions for flow control. Neither do I like returning a value when my intent is to indicate that there was no value.
Nonetheless, I am leaning towards option 3.
Is there an option I'm not considering? Does anyone have strong feelings about any of these three options?
Answers to this Question, Paraphrased:
- Provide a
contains
method and require caller to call it before callingget(key, ifModifiedSince)
, throw exception if key does not exist, return null if object has not been modified. - Wrap the response and data (if any) in a composite object.
- Use a predefined constant to denote some state (
UNMODIFIED, KEY_DOES_NOT_EXIST
). - Caller implements interface to be used as callbacks.
- The design sucks.
Why I Cannot Choose Answer #1
I agree that this is the ideal solution, but it was one I have already (reluctantly) dismissed. The problem with this approach is that in a majority of the cases in which these classes will be used, the backend storage system will be a third party remote system, like Amazon S3. This means that a contains
method would require a round trip to the storage system, which would in most cases be followed by another round trip. Because this would cost both time and money, it is not an option.
If not for that limitation, this would be the best approach.
(I realize I didn't mention this important element in the question, but I was trying to keep it brief. Obviously it was relevant.)
Conclusion:
After reading all of the answers I have come to the conclusion that a wrapper is the best approach in this case. Essentially I'll mimic HTTP, with meta data (headers) including a response code, and content body (message).