コード例 #1
0
        public override void NotifySelectionChanged(IEntryModel[] appliedModels)
        {
            base.NotifySelectionChanged(appliedModels);

            _cts.Cancel();
            _cts      = new CancellationTokenSource();
            IsEnabled = appliedModels.Count() == 1 &&
                        appliedModels[0] is FileSystemInfoExModel;
            if (IsEnabled)
            {
                Header = appliedModels[0].IsDirectory ? "Explore" : "Open";
                var appliedModel = appliedModels[0];
                HeaderIconExtractor = ModelIconExtractor <ICommandModel>
                                      .FromTaskFunc(t =>
                                                    GetFromSystemImageList.Instance.GetIconBytesForModelAsync(appliedModel,
                                                                                                              CancellationToken.None));

                Task.Run(() =>
                {
                    List <ICommandModel> subCommands = new List <ICommandModel>();
                    if (appliedModel is FileSystemInfoExModel)
                    {
                        subCommands.AddRange(GetCommands(appliedModel as FileSystemInfoExModel));
                    }
                    return(subCommands);
                }).ContinueWith((prevTsk) =>
                                { SubCommands = (prevTsk as Task <List <ICommandModel> >).Result; }, _cts.Token, TaskContinuationOptions.None,
                                TaskScheduler.FromCurrentSynchronizationContext());
            }
        }
コード例 #2
0
        public IEnumerable <ICommandModel> GetCommands(FileSystemInfoExModel appliedModel)
        {
            if (!appliedModel.IsDirectory)
            {
                string ext = PathEx.GetExtension(appliedModel.Name);
                foreach (OpenWithInfo info in FileTypeInfoProvider.GetFileTypeInfo(ext).OpenWithList)
                {
                    if (info.OpenCommand != null)
                    {
                        string executePath = OpenWithInfo.GetExecutablePath(info.OpenCommand);
                        string exeName     = Path.GetFileNameWithoutExtension(executePath);

                        if (info.OpenCommand != null && File.Exists(executePath))
                        {
                            IEntryModel exeModel = AsyncUtils.RunSync(() => _profile.ParseAsync(executePath));
                            if (exeModel != null)
                            {
                                yield return new CommandModel(new OpenWithScriptCommand(info))
                                       {
                                           Header              = String.Format("{0} ({1})", exeName, info.KeyName),
                                           ToolTip             = info.Description,
                                           HeaderIconExtractor =
                                               ModelIconExtractor <ICommandModel>
                                               .FromTaskFunc(t =>
                                                             _profile.GetIconExtractSequence(exeModel)
                                                             .Last().GetIconBytesForModelAsync(exeModel,
                                                                                               CancellationToken.None)),
                                           IsEnabled = true
                                       }
                            }
                            ;
                        }
                    }
                }

                yield return(new CommandModel(new OpenWithScriptCommand(OpenWithInfo.OpenAs))
                {
                    Header = "Open with...",
                    IsEnabled = true
                });
            }
        }
    }
コード例 #3
0
        public static IModelIconExtractor <T> FromTaskFuncCachable(string key, Func <Task <byte[]> > task)
        {
            return(ModelIconExtractor <T>
                   .FromTaskFunc(
                       async() =>
            {
                if (key == null)
                {
                    return await task();
                }

                if (!_cacheDic.ContainsKey(key))
                {
                    return _cacheDic[key] = await task();
                }
                return _cacheDic[key] ?? new byte[] {};
            }
                       ));
        }