Welcome to mirror list, hosted at ThFree Co, Russian Federation.

UIExtensionSelector.cs « TextUIUtil « Util « Text « Editor « src - github.com/microsoft/vs-editor-api.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 124c4e8870589bc6e5ecec82da01ea1df11b6eba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
//
//  Copyright (c) Microsoft Corporation. All rights reserved.
//  Licensed under the MIT License. See License.txt in the project root for license information.
//
namespace Microsoft.VisualStudio.Text.Utilities
{
    using System;
    using System.Collections.Generic;
    using Microsoft.VisualStudio.Text.Editor;
    using Microsoft.VisualStudio.Utilities;

    /// <summary>
    /// Helper class to perform ContentType and TextViewRole match against a set of extensions. 
    /// </summary>
    public static class UIExtensionSelector
    {
        /// <summary>
        /// Given a list of extensions that provide text view roles, filter the list and return that
        /// subset which matches at least one of the roles in the provided set of roles.
        /// </summary>
        public static List<Lazy<TProvider, TMetadataView>> SelectMatchingExtensions<TProvider, TMetadataView>
                    (IEnumerable<Lazy<TProvider, TMetadataView>> providerHandles,
                     ITextViewRoleSet viewRoles)
            where TMetadataView : ITextViewRoleMetadata          // text view role is required
        {
            var result = new List<Lazy<TProvider, TMetadataView>>();
            foreach (var providerHandle in providerHandles)
            {
                IEnumerable<string> providerRoles = providerHandle.Metadata.TextViewRoles;
                if (viewRoles.ContainsAny(providerRoles))
                {
                    result.Add(providerHandle);
                }
            }
            return result;
        }

        /// <summary>
        /// Given a list of extensions that provide text view roles and content types, filter the list and return that
        /// subset which matches the content types and at least one of the roles in the provided set of roles.
        /// </summary>
        public static List<Lazy<TProvider, TMetadataView>> SelectMatchingExtensions<TProvider, TMetadataView>
                    (IEnumerable<Lazy<TProvider, TMetadataView>> providerHandles,
                     IContentType documentContentType,
                     IContentType excludedContentType,
                     ITextViewRoleSet viewRoles)
            where TMetadataView : IContentTypeAndTextViewRoleMetadata          // both content type and text view role are required
        {
            var result = new List<Lazy<TProvider, TMetadataView>>();
            foreach (var providerHandle in providerHandles)
            {
                // first, check content type match
                if ((excludedContentType == null || !ExtensionSelector.ContentTypeMatch(excludedContentType, providerHandle.Metadata.ContentTypes)) && 
                    ExtensionSelector.ContentTypeMatch(documentContentType, providerHandle.Metadata.ContentTypes) &&
                    viewRoles.ContainsAny(providerHandle.Metadata.TextViewRoles))
                {
                    result.Add(providerHandle);
                }
            }
            return result;
        }

        /// <summary>
        /// Given a list of extensions that provide text view roles and content types, return the
        /// instantiated extension which best matches the given content type and matches at least one of the roles.
        /// </summary>
        public static TExtensionInstance InvokeBestMatchingFactory<TExtensionInstance, TExtensionFactory, TMetadataView>
                    (IEnumerable<Lazy<TExtensionFactory, TMetadataView>> providerHandles,
                     IContentType dataContentType,
                     ITextViewRoleSet viewRoles,
                     Func<TExtensionFactory, TExtensionInstance> getter,
                     IContentTypeRegistryService contentTypeRegistryService,
                     GuardedOperations guardedOperations,
                     object errorSource)
            where TMetadataView : IContentTypeAndTextViewRoleMetadata          // both content type and text view role are required
            where TExtensionFactory : class
            where TExtensionInstance : class
        {
            var roleMatchingProviderHandles = SelectMatchingExtensions(providerHandles, viewRoles);
            return guardedOperations.InvokeBestMatchingFactory(roleMatchingProviderHandles, dataContentType, getter, contentTypeRegistryService, errorSource);
        }
    }
}