-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUtils.cs
150 lines (137 loc) · 6.37 KB
/
Utils.cs
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
//Copyright 2017 Esri
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
using ArcGIS.Desktop.Core;
using ArcGIS.Desktop.Framework;
using ArcGIS.Desktop.Framework.Contracts;
using ArcGIS.Desktop.Framework.Dialogs;
using ArcGIS.Desktop.Framework.Threading.Tasks;
using ArcGIS.Desktop.Mapping;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Input;
namespace Esri.APL.FieldStatsQueryHelper {
public class Utils
{
/// <summary>
/// utility function to open and activate a map given the map url.
/// </summary>
/// <param name="url">unique map identifier</param>
internal static async void OpenAndActivateMap(string url)
{
try
{
// if active map is the correct one, we're done
if ((MapView.Active != null) && (MapView.Active.Map != null) && (MapView.Active.Map.URI == url))
return;
// get the map from the project item
Map map = null;
await QueuedTask.Run(() =>
{
var mapItem = Project.Current.GetItems<MapProjectItem>().FirstOrDefault(i => i.Path == url);
if (mapItem != null) map = mapItem.GetMap();
});
// url is not a project item - oops
if (map == null)
return;
// check the open panes to see if it's open but just needs activating
IEnumerable<IMapPane> mapPanes = FrameworkApplication.Panes.OfType<IMapPane>();
foreach (var mapPane in mapPanes)
{
if (mapPane.MapView?.Map?.URI == null) continue;
if (mapPane.MapView.Map.URI != url) continue;
var pane = mapPane as Pane;
pane?.Activate();
return;
}
// it's not currently open... so open it
await FrameworkApplication.Panes.CreateMapPaneAsync(map);
}
catch (Exception ex)
{
MessageBox.Show($@"Error in OpenAndActivateMap: {ex.Message}");
}
}
/// <summary>
/// Get the ICommand interface for a given typed DAML representation like for example: DAML.Button.esri_core_showProjectDockPane
/// or the string itself as for example "esri_core_contentsDockPane"
/// </summary>
/// <exception cref="ArgumentException">Thrown when the specified commandId parameter didn't yield a valid ICommand</exception>
/// <param name="commandId">Id of the command: use the typed DAML representation if possible to prevent errors i.e. DAML.Button.esri_core_showProjectDockPane or the string itself "esri_core_contentsDockPane" </param>
/// <returns>ICommand if an ICommand interface exists otherwise an exception is thrown</returns>
internal static ICommand GetICommand(string commandId)
{
// get the command's plug-in wrapper
var iCommand = FrameworkApplication.GetPlugInWrapper(commandId) as ICommand;
if (iCommand == null)
{
throw new ArgumentException("No such command id: {0} returns an ICommand interface", commandId);
}
return iCommand;
}
/// <summary>
/// Block the current thread's execution until either a condition becomes true or a timeout expires
/// </summary>
/// <remarks>
/// Usage: the example below blocks the current thread until the current project is available
/// or the time-out occurred
/// await Utils.BlockUntil(() => ProjectModule.CurrentProject != null);
/// if (ProjectModule.CurrentProject != null) {
/// // this thread no has access to the current project
/// }
/// else {
/// // this thread still has no access to the current project
/// }
/// </remarks>
/// <param name="pred">Specify a function that will eventually return true; once this function returns true BlockUntil will exit</param>
/// <param name="maxTimeoutInMilliSeconds">optional: once this timeout occurs the function exists even if the predicate is still false; the default is 2000 milliseconds</param>
/// <param name="delayInterval">optional: time interval yielded to other thread between checking of the specified 'pred' function; default is 500 milliseconds</param>
/// <returns>void</returns>
public static async Task BlockUntil(Func<bool> pred, int maxTimeoutInMilliSeconds = 2000, int delayInterval = 500)
{
var iTotalTime = 0;
while (!pred() && iTotalTime < maxTimeoutInMilliSeconds)
{
await Task.Delay(500);
iTotalTime += delayInterval;
}
}
/// <summary>
/// utility function to enable an action to run on the UI thread (if not already)
/// </summary>
/// <param name="action">the action to execute</param>
/// <returns></returns>
internal static Task RunOnUIThread(Action action)
{
if (OnUIThread)
{
action();
return Task.FromResult(0);
}
else
return Task.Factory.StartNew(action, System.Threading.CancellationToken.None, TaskCreationOptions.None, QueuedTask.UIScheduler);
}
/// <summary>
/// determines if the application is currently on the UI thread
/// </summary>
private static bool OnUIThread
{
get
{
if (FrameworkApplication.TestMode)
return QueuedTask.OnWorker;
else
return System.Windows.Application.Current.Dispatcher.CheckAccess();
}
}
}
}