• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

VB.NET IIdentifierCreationService接口代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了VB.NET中System.Workflow.ComponentModel.Design.IIdentifierCreationService接口的典型用法代码示例。如果您正苦于以下问题:VB.NET IIdentifierCreationService接口的具体用法?VB.NET IIdentifierCreationService怎么用?VB.NET IIdentifierCreationService使用的例子?那么恭喜您, 这里精选的接口代码示例或许可以为您提供帮助。



在下文中一共展示了IIdentifierCreationService接口的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的VB.NET代码示例。

示例1: New

Friend NotInheritable Class IdentifierCreationService
    Implements IIdentifierCreationService
    Private serviceProvider As IServiceProvider = Nothing

    Friend Sub New(ByVal serviceProvider As IServiceProvider)
        Me.serviceProvider = serviceProvider
    End Sub

    Sub ValidateIdentifier(ByVal activity As Activity, ByVal identifier As String) Implements IIdentifierCreationService.ValidateIdentifier
        If identifier Is Nothing Then
            Throw New ArgumentNullException("identifier")
        End If
        If activity Is Nothing Then
            Throw New ArgumentNullException("activity")
        End If
        If activity.Name.ToLower().Equals(identifier.ToLower()) Then
            Return
        End If
        Dim identifiers As New ArrayList()
        Dim rootActivity As Activity = GetRootActivity(activity)
        identifiers.AddRange(GetIdentifiersInCompositeActivity(CType(rootActivity, CompositeActivity)))
        identifiers.Sort()
        If identifiers.BinarySearch(identifier.ToLower(), StringComparer.OrdinalIgnoreCase) >= 0 Then
            Throw New ArgumentException(String.Format("Duplicate Component Identifier 0}", identifier))
        End If
    End Sub

    Sub EnsureUniqueIdentifiers(ByVal parentActivity As CompositeActivity, ByVal childActivities As ICollection) Implements IIdentifierCreationService.EnsureUniqueIdentifiers

        If parentActivity Is Nothing Then
            Throw New ArgumentNullException("parentActivity")
        End If
        If childActivities Is Nothing Then
            Throw New ArgumentNullException("childActivities")
        End If
        Dim allActivities As New List(Of Activity)()

        Dim activities As New Queue(childActivities)
        While activities.Count > 0

            Dim activity As Activity = CType(activities.Dequeue(), Activity)
            If TypeOf activity Is CompositeActivity Then
                For Each child As Activity In CType(activity, CompositeActivity).Activities
                    activities.Enqueue(child)
                Next
            End If

            'If we are moving activities, we need not regenerate their identifiers
            If CType(activity, IComponent).Site IsNot Nothing Then
                Continue While
            End If

            allActivities.Add(activity)
        End While

        ' get the root activity
        Dim rootActivity As CompositeActivity = CType(GetRootActivity(parentActivity), CompositeActivity)
        Dim identifiers As New ArrayList() ' all the identifiers in the workflow
        identifiers.AddRange(GetIdentifiersInCompositeActivity(rootActivity))

        For Each activity As Activity In allActivities

            Dim finalIdentifier As String = activity.Name

            ' now loop until we find a identifier that hasn't been used.
            Dim baseIdentifier As String = GetBaseIdentifier(activity)
            Dim index As Integer = 0

            identifiers.Sort()
            While finalIdentifier Is Nothing Or _
            finalIdentifier.Length = 0 Or _
            identifiers.BinarySearch(finalIdentifier.ToLower(), StringComparer.OrdinalIgnoreCase) >= 0
                finalIdentifier = String.Format("0}1}", baseIdentifier, ++index)
            End While

            ' add new identifier to collection 
            identifiers.Add(finalIdentifier)
            activity.Name = finalIdentifier
        Next
    End Sub

    Private Shared Function GetIdentifiersInCompositeActivity(ByVal CompositeActivity As CompositeActivity) As IList
        Dim identifiers As New ArrayList()
        If CompositeActivity IsNot Nothing Then
            identifiers.Add(CompositeActivity.Name)
            Dim allChildren As IList(Of Activity) = GetAllNestedActivities(CompositeActivity)
            For Each activity As Activity In allChildren
                identifiers.Add(activity.Name)
            Next
        End If

        Return ArrayList.ReadOnly(identifiers)
    End Function

    Private Shared Function GetBaseIdentifier(ByVal activity As Activity)
        Dim baseIdentifier As String = activity.GetType().Name
        Dim b As New StringBuilder(baseIdentifier.Length)
        For i As Integer = 0 To baseIdentifier.Length
            If Char.IsUpper(baseIdentifier(i)) And (i = 0 Or i = baseIdentifier.Length - 1 Or Char.IsUpper(baseIdentifier(i + 1))) Then
                b.Append(Char.ToLower(baseIdentifier(i)))
            Else
                b.Append(baseIdentifier.Substring(i))
                Exit For
            End If
        Next
        Return b.ToString()
    End Function

    Private Shared Function GetRootActivity(ByVal activity As Activity) As Activity
        If activity Is Nothing Then
            Throw New ArgumentException("activity")
        End If

        While activity.Parent IsNot Nothing
            activity = activity.Parent
        End While

        Return activity
    End Function

    Private Shared Function GetAllNestedActivities(ByVal compositeActivity As CompositeActivity) As Activity()

        If compositeActivity Is Nothing Then
            Throw New ArgumentNullException("compositeActivity")
        End If

        Dim nestedActivities As New ArrayList()
        Dim compositeActivities As New Queue()
        compositeActivities.Enqueue(compositeActivity)
        While compositeActivities.Count > 0

            Dim compositeActivity2 As CompositeActivity = CType(compositeActivities.Dequeue(), CompositeActivity)

            For Each activity As Activity In compositeActivity2.Activities
                nestedActivities.Add(activity)
                If activity Is compositeActivity Then
                    compositeActivities.Enqueue(activity)
                End If
            Next

            For Each activity As Activity In compositeActivity2.EnabledActivities
                If Not nestedActivities.Contains(activity) Then
                    nestedActivities.Add(activity)
                    If (activity Is compositeActivity) Then
                        compositeActivities.Enqueue(activity)
                    End If
                End If
            Next
        End While
        Return CType(nestedActivities.ToArray(GetType(Activity)), Activity())
    End Function
开发者ID:VB.NET开发者,项目名称:System.Workflow.ComponentModel.Design,代码行数:151,代码来源:IIdentifierCreationService



注:本文中的System.Workflow.ComponentModel.Design.IIdentifierCreationService接口示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap