vote up 1 vote down star
1

Yes, the title doesn't make much sense, but here's my situation.

I have two interfaces, say IGen and ITrans. Some of my classes implement IGen, some implement ITrans and some implement both

ITrans has one method (Translate) and IGen has one method (Generate). For the classes that implement both ITrans and IGen Generate simply calls Translate.

I also have an Interface IGenAndTrans which is simply defined as

public interface IGenAndTrans : IGen , ITrans
{        
}

And I have a class (call it Holder) which has IGenAndTrans as a property.

[Serializable] //<- Problem
public class Holder
{
    public IGenAndTrans GeneratorAndTranslator { get; set;}
}

Now, I want to mark the class Holder with [SerializableAttribute] and use the XmlSerializer. However I can't do this because Holder has a property which is an interface. Normally the recommended approach would be to make IGenAndTrans an abstract base class and use XmlInclude. I've done this successfully in the past.

However I'm unsure of how to do that in this case. Because a lot of my classes implement both IGen and ITrans they can't simply inherit from an abstract base class. This would mean I would need to split each of those classes into two classes with the corresponding duplication of code (since Generate calls Translate a lot of the time)

Any recommendations (if I've managed to explain myself well enough)? Maybe I'm too close to the code and should be implementing it differently.

flag

GeneratorAndTranslator is effectively a Factory Method: why do you want to Serialize a factory method? Surely the factory should be created based upon some other serialized info? – Mitch Wheat Sep 22 at 3:21
1  
You could implement IXmlSerializable and handle it yourself ... though I suspect Marc Gravell will be along with a better answer. – silky Sep 22 at 3:22
1  
@silky: might be a bit early in the UK! – Mitch Wheat Sep 22 at 3:25
2  
@Mitch: But it's never too early for Jon Skeet. – Mark Rushakoff Sep 22 at 3:27
@Mitch, I'm unsure what you mean. I would want the GeneratorAndTranslator property to be populated based on the serialized info. If you could show me how to do this using the factory pattern, I might be understand what you mean. – Ray Sep 22 at 3:29

3 Answers

vote up 0 vote down

Hi Ray, since this is an autoproperty, perhaps you could use [field: NonSerialized] to indicate that the backing field is not serialized?

link|flag
see remarks here: msdn.microsoft.com/en-us/library/… – Andrew Matthews Sep 22 at 4:01
but I need to serialize it. – Ray Sep 22 at 4:30
vote up 0 vote down

I guess this is cheating because I have inside information, but I managed a bit of a specialized fix for myself.

I realised that everything that implemented IGen also implemented ITrans. And I realised that in every class that implemented both interfaces Generate always called Translate.

So I made a base abstract class GenerateAndTranslate that has one property called Translator and one called Generator. They both are of a new type called TranslatorBase that everything that previously implemented ITrans inherits from.

This fix only works in my case, so I'm still interested in hearing other people's ideas.

link|flag
vote up 0 vote down

I was gonna to answer your question, but realized there are really not enough information/context on this problem to come up with a solid suggestion.

But the general idea is: store the data, not the methods.

For example, if you have Tiger class and Wolf class, you should refer to them as Animal instead of IWalk; on the other hand, if you have Tiger class and Robot class, you might have to refer to them as object, even though they share IWalk interface.

You should only refer to objects as interfaces when you don't care about the data but the methods.

On an unrelated note, in C# world, there seem to be tendency to strong type everything (which is understandable, since it provides type-safety and compile-time error checking), but there is always opportunity to use generic types and cast them on the fly.

link|flag

Your Answer

Get an OpenID
or

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