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 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.ServiceModel.Activities.Tracking
{
using System.Runtime.Remoting.Messaging;
using System.Runtime;
using System.Activities.Tracking;
using System.Collections.Specialized;
using System.Collections.ObjectModel;
using System.Configuration;
using System.ServiceModel.Configuration;
using System.ServiceModel.Activities.Tracking.Configuration;
class DefaultProfileManager : TrackingProfileManager
{
ConfigFileProfileStore profileStore;
public DefaultProfileManager()
{
}
ConfigFileProfileStore ProfileStore
{
get
{
if (this.profileStore == null)
{
this.profileStore = new ConfigFileProfileStore();
}
return this.profileStore;
}
}
public override TrackingProfile Load(string profileName, string activityDefinitionId, TimeSpan timeout)
{
if (profileName == null)
{
throw FxTrace.Exception.ArgumentNull("profileName");
}
return this.GetProfile(profileName, activityDefinitionId);
}
internal TrackingProfile GetProfile(string profileName, string activityDefinitionId)
{
// Get all profiles from the store
Collection<TrackingProfile> profiles = this.ProfileStore.ReadProfiles();
TrackingProfile bestMatch = null;
if (profiles != null)
{
// Go through all the profiles in the data store and find a match to the requested profile
foreach (TrackingProfile profile in profiles)
{
// Check the profile matches the requested name, and scope type
if (string.Compare(profileName, profile.Name, StringComparison.OrdinalIgnoreCase) == 0)
{
// If we find a global scope profile, use it as the default profile
if (string.Compare("*", profile.ActivityDefinitionId, StringComparison.OrdinalIgnoreCase) == 0)
{
if (bestMatch == null)
{
bestMatch = profile;
}
}
else if (string.Compare(activityDefinitionId, profile.ActivityDefinitionId, StringComparison.OrdinalIgnoreCase) == 0)
{
//specific profile for scopetarget found.
bestMatch = profile;
break;
}
}
}
}
if (bestMatch == null)
{
//Add a trace message indicating tracking profile with activity definiton id is not found
if (TD.TrackingProfileNotFoundIsEnabled())
{
TD.TrackingProfileNotFound(profileName, activityDefinitionId);
}
//If the profile is not found in config, return an empty profile to suppress
//events. If .config does not have profiles, return null.
bestMatch = new TrackingProfile()
{
ActivityDefinitionId = activityDefinitionId
};
}
return bestMatch;
}
class ConfigFileProfileStore
{
Collection<TrackingProfile> trackingProfiles;
public Collection<TrackingProfile> ReadProfiles()
{
if (this.trackingProfiles != null)
{
return this.trackingProfiles;
}
TrackingSection trackingSection = null;
try
{
trackingSection =
(TrackingSection)ConfigurationHelpers.GetSection(ConfigurationHelpers.GetSectionPath(TrackingConfigurationStrings.Tracking));
}
catch (ConfigurationErrorsException e)
{
if (!Fx.IsFatal(e))
{
FxTrace.Exception.TraceUnhandledException(e);
}
throw;
}
if (trackingSection == null)
{
return null;
}
// Configuration elements are never null, collections are empty
// and single elements are constructed with the property IsPresent=false
this.trackingProfiles = new Collection<TrackingProfile>();
foreach (ProfileElement profileElement in trackingSection.Profiles)
{
if (profileElement.Workflows != null)
{
foreach (ProfileWorkflowElement workflowElement in profileElement.Workflows)
{
TrackingProfile profile = new TrackingProfile()
{
Name = profileElement.Name,
ImplementationVisibility = profileElement.ImplementationVisibility,
ActivityDefinitionId = workflowElement.ActivityDefinitionId
};
workflowElement.AddQueries(profile.Queries);
this.trackingProfiles.Add(profile);
}
}
}
return this.trackingProfiles;
}
}
}
}
|