Say i have a class that contains these items publicly accessible via properties:

class MyClass
{    
    int switch1; //0 or 1
    int switch2; //0 or 1
    int switch3; //0 or 1
}

This class represents switch states, and each time a switch state changes, i would like to add it to my transition list

I have a large sorted list that contains instances of this class and would like to use a query to capture only the entries in my list where the switch state for any switch changes.

Is this possible using a linq query?

link|improve this question

56% accept rate
1  
you might want to look into the Reactive extentions library for C# – GreyCloud Aug 10 '11 at 15:30
Just out of curiosity. If this is the whole class, what is your sorted list sorting on? – alun Aug 10 '11 at 15:32
@alun - i have a uid that i create for other purposes. This isn't the whole class, just the subset that is pertinent to my question. – Jason Aug 10 '11 at 15:34
An example could be helpful here. When you say "previously found" do you mean previous item in the list in sorted order? – James Michael Hare Aug 10 '11 at 15:35
1  
@Jason It might be helpful to add something like that to the question so people coming in here late don't have to read all these comments:) – alun Aug 10 '11 at 16:08
show 10 more comments
feedback

2 Answers

up vote 4 down vote accepted

try this:

Assuming your class looks like:

public class State
{
    public int Id { get; set; }
    public int Switch1 { get; set; }
    public int Switch2 { get; set; }
    public int Switch3 { get; set; }

    public override bool Equals(object obj)
    {
        var other = obj as State;

        if (other != null)
        {
            return Switch1 == other.Switch1 &&
                   Switch2 == other.Switch2 &&
                   Switch3 == other.Switch3;
        }

        return false;
    }
}

I just added an Equals() to compare flags and my Id field is purely to demonstrate which items changed.

We can then craft a LINQ query like:

    State previous = null;
    var transitions = list.Where(s =>
                                    {
                                        bool result = !s.Equals(previous);
                                        previous = s;
                                        return result;
                                    })
        .ToList();

Not elegant, but it works, if you had this data set:

    var list = new List<State>
                {
                    new State { Id = 0, Switch1 = 0, Switch2 = 0, Switch3 = 0 },
                    new State { Id = 1, Switch1 = 0, Switch2 = 0, Switch3 = 0 },
                    new State { Id = 2, Switch1 = 1, Switch2 = 0, Switch3 = 0 },
                    new State { Id = 3, Switch1 = 0, Switch2 = 1, Switch3 = 0 },
                    new State { Id = 4, Switch1 = 0, Switch2 = 1, Switch3 = 0 },
                    new State { Id = 5, Switch1 = 0, Switch2 = 1, Switch3 = 0 },
                    new State { Id = 6, Switch1 = 1, Switch2 = 1, Switch3 = 0 },
                    new State { Id = 7, Switch1 = 0, Switch2 = 0, Switch3 = 1 },
                    new State { Id = 8, Switch1 = 0, Switch2 = 0, Switch3 = 1 },
                    new State { Id = 9, Switch1 = 0, Switch2 = 0, Switch3 = 0 },
                };

And ran the query, the list would contain your state transitions at items: 0, 2, 3, 6, 7, 9

link|improve this answer
I believe this is what i am looking for. Give me a few to implement it in my code and will get back to you. – Jason Aug 10 '11 at 16:09
Where is the difference from my code? – Mario Vernari Aug 10 '11 at 16:15
1  
Jason isn't segregating his messages by ID, each id is unique, so your example wouldn't match. – James Michael Hare Aug 10 '11 at 16:21
@James - I still have to do a bit of work to verify that the code is absolutely correct. Thanks for all the help! – Jason Aug 10 '11 at 17:36
@Jason: No problem, if you find an issue just let me know, happy to help! – James Michael Hare Aug 10 '11 at 17:44
show 4 more comments
feedback

I would do as follow:

class MyClass
{    
    int ID; //needs for recognize the message
    int switch1; //0 or 1
    int switch2; //0 or 1
    int switch3; //0 or 1
    public int Pattern
    {
       get { return switch1 + switch2 << 1 + switch3 << 2; }
    }
}

Then it must be declared a dictionary with the previous-state messages:

Dictionary<int, int> _prevStates;

each cell has for key the ID, and for value the "Pattern" of the message. At this point, let's suppose that the new incoming message stream is a list of MyClass:

IEnumerable<MyClass> incoming = ...

var changed = from msg in incoming
              where _prevStates.ContainsKey(msg.ID)  //what to do?
              where _prevStates[msg.ID].Pattern != msg.Pattern
              select msg;

Finally, you must update the dictionary with the changed patterns.

Cheers

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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