I’ve made a class that is a cross between a singleton (fifth version) and a (dependency injectable) factory. Call this a “Mono-Factory?” It works, and looks like this:
public static class Context
{
public static BaseLogger LogObject = null;
public static BaseLogger Log
{
get
{
return LogFactory.instance;
}
}
class LogFactory
{
static LogFactory() { }
internal static readonly BaseLogger instance = LogObject ?? new BaseLogger(null, null, null);
}
}
//USAGE EXAMPLE:
//Optional initialization, done once when the application launches...
Context.LogObject = new ConLogger();
//Example invocation used throughout the rest of code...
Context.Log.Write("hello", LogSeverity.Information);
The idea is for the mono-factory could be expanded to handle more than one item (e.g. more than a logger). But I would have liked to have made the mono-factory look like this:
public static class Context
{
private static BaseLogger LogObject = null;
public static BaseLogger Log
{
get
{
return LogFactory.instance;
}
set
{
LogObject = value;
}
}
class LogFactory
{
static LogFactory() { }
internal static readonly BaseLogger instance = LogObject ?? new BaseLogger(null, null, null);
}
}
The above does not work, because the moment the Log property is touched (by a setter invocation) it causes the code path related to the getter to be executed…which means the internal LogFactory “instance” data is always set to the BaseLogger (setting the “LogObject” is always too late!).
So is there a decoration or other trick I can use that would cause the “get” path of the Log property to be lazy while the set path is being invoked?
Note: This is a complete rewrite of the original answer; the recommendation still stands, however.
First: make sure you’re not running under a debugger. For example, a watch window could touch your public static properties. This is one of the possible reasons the second example could behave differently from the first. It may sound silly, but you never know.
Under .NET 4, your second example does work, and I’d honestly expect it to work under .NET 2 as well. As long as you don’t touch the
Context.Logproperty orLogFactory.instancefield inadvertently. Yet, it looks terribly fragile.Also, strictly speaking, the
beforefieldinitsubtleties you’re trying to use here can bite you in a multi-threaded application: the init ofLogFactorydoes not need to run on the same thread as the setter ofContext.Log[Object]. This means that whenLogFactory.instanceis initialized, on that threadContext.LogObjectneed not be set yet, while it is on another (such syncs can happen lazily). So it is not thread safe. You can try to fix this by makingContext.LogObjectvolatile, that way the set is seen on all threads at once. But who knows what other race conditions we get into next.And after all the tricks, you’re still left with the following rather unintuitive result:
You’d expect the second invocation of the setter to either work (
Context.Log == value2) or to throw. Not to be silently ignored.You could also go for
Here the result is guaranteed, and lazy (in line with Jon Skeet’s fifth singleton method). And it looks a lot cleaner IMHO.