public ElmLoggerProvider(ElmStore store, IOptions <ElmOptions> options)
        {
            if (store == null)
            {
                throw new ArgumentNullException(nameof(store));
            }

            if (options == null)
            {
                throw new ArgumentNullException(nameof(options));
            }

            _store   = store;
            _options = options.Value;
        }
Beispiel #2
0
        public static IDisposable Push(ElmScope scope, ElmStore store)
        {
            if (scope == null)
            {
                throw new ArgumentNullException(nameof(scope));
            }

            if (store == null)
            {
                throw new ArgumentNullException(nameof(store));
            }

            var temp = Current;

            Current        = scope;
            Current.Parent = temp;

            Current.Node = new ScopeNode()
            {
                StartTime = DateTimeOffset.UtcNow,
                State     = Current._state,
                Name      = Current._name
            };

            if (Current.Parent != null)
            {
                Current.Node.Parent = Current.Parent.Node;
                Current.Parent.Node.Children.Add(Current.Node);
            }
            else
            {
                Current.Context.Root = Current.Node;
                store.AddActivity(Current.Context);
            }

            return(new DisposableAction(() =>
            {
                Current.Node.EndTime = DateTimeOffset.UtcNow;
                Current = Current.Parent;
            }));
        }
 public ElmPageMiddleware(RequestDelegate next, IOptions <ElmOptions> options, ElmStore store)
 {
     _next    = next;
     _options = options.Value;
     _store   = store;
 }
Beispiel #4
0
 public ElmLogger(string name, ElmOptions options, ElmStore store)
 {
     _name    = name;
     _options = options;
     _store   = store;
 }