本文整理汇总了C#中Castle.MicroKernel.Context.CreationContext类的典型用法代码示例。如果您正苦于以下问题:C# CreationContext类的具体用法?C# CreationContext怎么用?C# CreationContext使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
CreationContext类属于Castle.MicroKernel.Context命名空间,在下文中一共展示了CreationContext类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Resolve
public virtual object Resolve(CreationContext context, Burden burden, IReleasePolicy releasePolicy)
{
var instance = CreateInstance(context, burden);
Track(burden, releasePolicy);
return instance;
}
示例2: GetScope
public ILifetimeScope GetScope(CreationContext context)
{
var messageContext = MessageContext.Current;
if (messageContext == null)
{
throw new InvalidOperationException(string.Format("Attempted to resolve {0} outside of Rebus message context!", context.RequestedType));
}
var items = messageContext.TransactionContext.Items;
object lifetimeScope;
if (items.TryGetValue(LifestimeScopeItemKey, out lifetimeScope))
{
return (ILifetimeScope) lifetimeScope;
}
var defaultLifetimeScope = new DefaultLifetimeScope();
items[LifestimeScopeItemKey] = defaultLifetimeScope;
messageContext.TransactionContext.OnDisposed(() => defaultLifetimeScope.Dispose());
return defaultLifetimeScope;
}
示例3: GetNewInstance
private object GetNewInstance(CreationContext context, IReleasePolicy releasePolicy)
{
var burden = CreateInstance(context, true);
cachedBurden = burden;
Track(burden, releasePolicy);
return burden.Instance;
}
示例4: GetGenericArguments
public Type[] GetGenericArguments(ComponentModel model, CreationContext context)
{
//LuceneSession<Foo>
Type sessionType = context.GenericArguments[0];
Type modelType = sessionType.GetGenericArguments()[0];
return new[] { modelType };
}
示例5: Resolve
public virtual object Resolve(CreationContext context, IReleasePolicy releasePolicy)
{
var burden = CreateInstance(context, false);
Track(burden, releasePolicy);
return burden.Instance;
}
示例6: Resolve
public override object Resolve(CreationContext context, IReleasePolicy releasePolicy)
{
// 1. read from cache
if (cachedBurden != null)
{
return cachedBurden.Instance;
}
var instanceFromContext = context.GetContextualProperty(ComponentActivator);
if (instanceFromContext != null)
{
//we've been called recursively, by some dependency from base.Resolve call
return instanceFromContext;
}
var initializing = false;
try
{
initializing = init.ExecuteThreadSafeOnce();
if (cachedBurden != null)
{
return cachedBurden.Instance;
}
var burden = CreateInstance(context, true);
cachedBurden = burden;
Track(burden, releasePolicy);
return burden.Instance;
}
finally
{
if (initializing)
{
init.EndThreadSafeOnceSection();
}
}
}
示例7: Resolve
public override object Resolve(CreationContext context, IReleasePolicy releasePolicy)
{
// 1. read from cache
if (cachedBurden != null)
{
return cachedBurden.Instance;
}
var initializing = false;
try
{
initializing = init.ExecuteThreadSafeOnce();
if (cachedBurden != null)
{
return cachedBurden.Instance;
}
var burden = CreateInstance(context, true);
cachedBurden = burden;
Track(burden, releasePolicy);
return burden.Instance;
}
finally
{
if (initializing)
{
init.EndThreadSafeOnceSection();
}
}
}
示例8: Resolve
public override object Resolve(CreationContext context, Burden burden, IReleasePolicy releasePolicy)
{
if (cachedBurden != null)
{
return cachedBurden.Instance;
}
var instanceFromContext = context.GetContextualProperty(ComponentActivator);
if (instanceFromContext != null)
{
//we've been called recursively, by some dependency from base.Resolve call
return instanceFromContext;
}
object instance;
lock (ComponentActivator)
{
if (cachedBurden != null)
{
return cachedBurden.Instance;
}
instance = base.CreateInstance(context, burden);
cachedBurden = burden;
}
Track(burden, releasePolicy);
return instance;
}
示例9: Create
public object Create(IProxyFactoryExtension customFactory, IKernel kernel, ComponentModel model,
CreationContext context, params object[] constructorArguments)
{
throw new NotImplementedException(
"You must supply an implementation of IProxyFactory " +
"to use interceptors on the Microkernel");
}
示例10: GetSubHandler
protected IHandler GetSubHandler(CreationContext context, Type genericType)
{
lock (type2SubHandler)
{
IHandler handler;
if (type2SubHandler.ContainsKey(genericType))
{
handler = type2SubHandler[genericType];
}
else
{
Type service = ComponentModel.Service.MakeGenericType(context.GenericArguments);
ComponentModel newModel = Kernel.ComponentModelBuilder.BuildModel(
ComponentModel.Name, service, genericType, ComponentModel.ExtendedProperties);
newModel.ExtendedProperties[ComponentModel.SkipRegistration] = true;
CloneParentProperties(newModel);
// Create the handler and add to type2SubHandler before we add to the kernel.
// Adding to the kernel could satisfy other dependencies and cause this method
// to be called again which would result in extra instances being created.
handler = Kernel.HandlerFactory.Create(newModel);
type2SubHandler[genericType] = handler;
Kernel.AddCustomComponent(newModel);
}
return handler;
}
}
示例11: Resolve
public override object Resolve(CreationContext context) {
var current = HttpContext.Current;
if (current == null)
throw new InvalidOperationException("HttpContext.Current is null. PerHttpApplicationLifestyle can only be used in ASP.NET");
var app = current.ApplicationInstance;
var lifestyleModule = app.Modules
.Cast<string>()
.Select(k => app.Modules[k])
.OfType<PerHttpApplicationLifestyleModule>()
.FirstOrDefault();
if (lifestyleModule == null) {
var message = string.Format("Looks like you forgot to register the http module {0}" +
"\r\nAdd '<add name=\"PerHttpApplicationLifestyle\" type=\"{1}\" />' " +
"to the <httpModules> section on your web.config",
typeof (PerWebRequestLifestyleModule).FullName,
typeof (PerWebRequestLifestyleModule).AssemblyQualifiedName);
throw new Exception(message);
}
if (!lifestyleModule.HasComponent(PerAppObjectID)) {
var instance = base.Resolve(context);
lifestyleModule[PerAppObjectID] = instance;
app.Disposed += (sender, args) => base.Release(instance);
}
return lifestyleModule[PerAppObjectID];
}
示例12: Resolve
public override object Resolve(CreationContext context)
{
var store = this.GetStore();
var instance = base.Resolve(context);
if (instance == null)
{
if (context.Handler.ComponentModel.ExtendedProperties[Constants.RegIsInstanceKey] != null)
{
throw new DependencyResolutionException("Cannot find the instance in the context store.");
}
}
else if (store[Model.Name] == null)
{
store[Model.Name] = instance;
store.GetContextInstances().Add(new ContextStoreDependency(Model.Name, instance, this));
this.registeredForCleanup = true;
}
if (!this.registeredForCleanup)
{
store.GetContextInstances().Add(new ContextStoreDependency(Model.Name, instance, this));
this.registeredForCleanup = true;
}
return store[Model.Name];
}
示例13: Create
/// <summary>
/// Creates the <see cref="ISessionFactory"/> from the configuration
/// </summary>
/// <param name="context"></param>
/// <returns></returns>
public override object Create(CreationContext context)
{
RaiseCreatingSessionFactory();
var configuration = Model.ExtendedProperties[Constants.SessionFactoryConfiguration]
as Configuration;
return configuration.BuildSessionFactory();
}
开发者ID:naveedashraf,项目名称:Castle.Facilities.NHibernateIntegration,代码行数:12,代码来源:SessionFactoryActivator.cs
示例14: Request
public virtual object Request(CreationContext context, Func<CreationContext, Burden> creationCallback)
{
using (rwlock.ForWriting())
{
if (!initialized)
{
Intitialize(creationCallback, context);
}
Burden burden;
if (available.Count != 0)
{
burden = available.Pop();
context.AttachExistingBurden(burden);
}
else
{
burden = creationCallback.Invoke(context);
}
try
{
inUse.Add(burden.Instance, burden);
}
catch (NullReferenceException)
{
throw new PoolException("creationCallback didn't return a valid burden");
}
catch (ArgumentNullException)
{
throw new PoolException("burden returned by creationCallback does not have root instance associated with it (its Instance property is null).");
}
return burden.Instance;
}
}
示例15: CanResolvePendingDependencies
private bool CanResolvePendingDependencies(CreationContext context)
{
if (CurrentState == HandlerState.Valid)
{
return true;
}
// detect circular dependencies
if (IsBeingResolvedInContext(context))
{
return context.HasAdditionalParameters;
}
var canResolveAll = true;
foreach (var dependency in DependenciesByService.Values.ToArray())
{
// a self-dependency is not allowed
var handler = Kernel.LazyLoadComponentByType(dependency.DependencyKey, dependency.TargetItemType, context.AdditionalParameters);
if (handler == this || handler == null)
{
canResolveAll = false;
break;
}
}
return (canResolveAll && DependenciesByKey.Count == 0) || context.HasAdditionalParameters;
}