示例#1
0
        private void ProcessDirectory(string directoryPath, ISpecification <NodeModelBase> specification,
                                      INodeFoundEventPublisher recursiveSearchResult)
        {
            var model = _directoryService.GetDirectory(directoryPath);

            if (specification.IsSatisfiedBy(model))
            {
                recursiveSearchResult.RaiseNodeFoundEvent(directoryPath);
            }
        }
示例#2
0
    private static void ProcessNode(string nodePath, ISpecification <NodeModelBase> specification,
                                    INodeFoundEventPublisher publisher, Func <string, NodeModelBase> factory)
    {
        var model = factory(nodePath);

        if (specification.IsSatisfiedBy(model))
        {
            publisher.RaiseNodeFoundEvent(nodePath);
        }
    }
示例#3
0
        private void ProcessFile(string filePath, ISpecification <NodeModelBase> specification,
                                 INodeFoundEventPublisher publisher)
        {
            var model = _fileService.GetFile(filePath);

            if (specification.IsSatisfiedBy(model))
            {
                publisher.RaiseNodeFoundEvent(filePath);
            }
        }