Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Recently I've found myself writing methods which call other methods in succession and setting some value based on whichever method returns an appropriate value first. What I've been doing is setting the value with one method, then checking the value and if it's not good then I check the next one. Here's a recent example:

private void InitContent()
{
    if (!String.IsNullOrEmpty(Request.QueryString["id"]))
    {
        Content = GetContent(Convert.ToInt64(Request.QueryString["id"]));
        ContentMode = ContentFrom.Query;
    }

    if (Content == null && DefaultId != null)
    {
        Content = GetContent(DefaultId);
        ContentMode = ContentFrom.Default;
    }

    if (Content == null) ContentMode = ContentFrom.None;
}

Here the GetContent method should be returning null if the id isn't in the database. This is a short example, but you can imagine how this might get clunky if there were more options. Is there a better way to do this?

share|improve this question
Why is ContentMode not a property of the class of 'Content'? If you make it part of the class of 'Content', your code could be shorter and more readable. And you won't need the ContentFrom.None enum as NULL Content object will replace the logic for that enum. – SolutionYogi Mar 23 '11 at 3:56
Because Content is from a third-party API. One that I have to use for this project... I suppose I could try wrapping it up like one of the other suggestions here. – Andy Mar 24 '11 at 15:53
I'm accepting @StephenZhu's answer for this question because it's what I end up using for the example I posted. But thank you to everyone for the other great answers that I'll be keeping in mind for some of the more complex cases where this comes up. – Andy Mar 28 '11 at 20:40

6 Answers

up vote 1 down vote accepted

I suggest you try some kind of Factory design pattern for this case. You can abstract the content create procedure by register different creators. Moreover, you can add preference on each creator for your own logic. Besides, I suggest you encapsulate all data related to Content just like "ContentDefinition" class from other's post.

In general, you need to know that there is always a trade off between flexibility and efficiency. Sometime your first solution is good enough:)

share|improve this answer

The null coalescing operator might have the semantics you want.

q = W() ?? X() ?? Y() ?? Z();

That's essentially the same as:

if ((temp = W()) == null && (temp = X()) == null && (temp == Y()) == null)
    temp = Z();
q = temp;

That is, q is the first non-null of W(), X(), Y(), or if all of them are null, then Z().

You can chain as many as you like.

The exact semantics are not quite like I sketched out; the type conversion rules are tricky. See the spec if you need the exact details.

share|improve this answer

You could also do something a little more sneaky, along the lines of this:

private Int64? GetContentIdOrNull(string id)
{
    return string.IsNullOrEmpty(id) ? null : (Int64?)Convert.ToInt64(id);
}

private Int64? GetContentIdOrNull(DefaultIdType id)
{
    return id;
}

private void InitContent()
{
    // Attempt to get content from multiple sources in order of preference

    var contentSources = new Dictionary<ContentFrom, Func<Int64?>> {
        { ContentFrom.Query,   () => GetContentIdOrNull(Request.QueryString["id"]) },
        { ContentFrom.Default, () => GetContentIdOrNull(DefaultId) }
    };

    foreach (var source in contentSources) {
        var id = source.Value();
        if (!id.HasValue) {
            continue;
        }

        Content = GetContent(id.Value);
        ContentMode = source.Key;

        if (Content != null) {
            return;
        }
    }

    // Default
    ContentMode = ContentFrom.None;
}

That would help if you had many more sources, at the cost of increased complexity.

share|improve this answer
Except, this doesn't solve the problem of needing to try the other methods if the first one didn't work. – Andy Mar 23 '11 at 0:05
@Andy: Well yes, it does, that's sort of the whole point. In what way wouldn't it work? – Cameron Mar 23 '11 at 0:14
@Andy: Oh I totally misread your sample code, sorry. Let me fix my answer... – Cameron Mar 23 '11 at 0:18
+1 I like this solution for some of the more complex cases I've run across. But it's definitely overkill for this specific problem. – Andy Mar 23 '11 at 0:52
@Andy: Thanks. After looking back at it, I have to agree it's much less readable than your original code :P – Cameron Mar 23 '11 at 1:01

Personally, I find when I have lots of statements that are seemingly disparate, it's time to make some functions.

private ContentMode GetContentMode(){
}

private Content GetContent(int id){
}

private Content GetContent(HttpRequest request){
   return GetContent(Convert.ToInt64(request.QueryString["id"]));
}

private void InitContent(){
  ContentMode mode = GetContentMode();
  Content = null;
  switch(mode){
    case ContentMode.Query:
       GetContent(Request);
       break;
    case ContentMode.Default:
       GetContent(DefaultId);
       break;
    case ContentMode.None:
       ... handle none case...
       break;

  }
}

This way, you separate your intentions - first step, determine the content mode. Then, get the content.

share|improve this answer
Unfortunately, I won't be able to determine the ContentMode without first knowing that it worked, otherwise I probably would have done something like this. – Andy Mar 22 '11 at 23:51

Ok, because I noticed a bit late that you actually wanted the ContentFrom mode as well, I've done my best to come up with a translation of your sample below my original answer


In general I use the following paradigm for cases like this. Search and replace your specific methods here and there :)

IEnumerable<T> ValueSources()
{
     yield return _value?? _alternative;
     yield return SimpleCalculationFromCache();
     yield return ComplexCalculation();
     yield return PromptUIInputFallback("Please help by entering a value for X:");
}

T EffectiveValue { get { return ValueSources().FirstOrDefault(v => v!=null); } }

Note how you can now make v!=null arbitrarily 'interesting' for your purposes.

Note also how lazy evaluation makes sure that the calculations are never done when _value or _alternative are set to 'interesting' values


Here is my initial attempt at putting your sample into this mold. Note how I added quite a lot of plumbing to make sure this actually compiles into standalone C# exe:

using System.Collections.Generic;
using System.Linq;
using System;
using T=System.String;

namespace X { public class Y
{
    public static void Main(string[]args) 
    {
        var content = Sources().FirstOrDefault(c => c); // trick: uses operator bool()
    }

    internal protected struct Content
    {
        public T Value;
        public ContentFrom Mode;
        //
        public static implicit operator bool(Content specimen) { return specimen.Mode!=ContentFrom.None && null!=specimen.Value; }
    }

    private static IEnumerable<Content> Sources()
    {
        // mock
        var Request = new { QueryString = new [] {"id"}.ToDictionary(a => a) };

        if (!String.IsNullOrEmpty(Request.QueryString["id"]))
            yield return new Content { Value = GetContent(Convert.ToInt64(Request.QueryString["id"])), Mode = ContentFrom.Query };
        if (DefaultId != null)
            yield return new Content { Value = GetContent((long) DefaultId), Mode = ContentFrom.Default };
        yield return new Content();
    }

    public enum ContentFrom { None, Query, Default };
    internal static T GetContent(long id) { return "dummy"; }
    internal static readonly long? DefaultId = 42;

} }
share|improve this answer
private void InitContent()
{
    Int64? id = !String.IsNullOrEmpty(Request.QueryString["id"])
                ? Convert.ToInt64(Request.QueryString["id"])
                : null;

    if (id != null && (Content = GetContent(id)) != null)
        ContentMode = ContentFrom.Query;
    else if(DefaultId != null && (Content = GetContent(DefaultId)) != null)
        ContentMode = ContentFrom.Default;
    else
        ContentMode = ContentFrom.None;
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.