-
Notifications
You must be signed in to change notification settings - Fork 372
Expand file tree
/
Copy pathCachedImageFastRenderer.cs
More file actions
435 lines (349 loc) · 15.4 KB
/
CachedImageFastRenderer.cs
File metadata and controls
435 lines (349 loc) · 15.4 KB
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
using Android.Widget;
using System;
using System.ComponentModel;
using Xamarin.Forms;
using Xamarin.Forms.Platform.Android;
using FFImageLoading.Work;
using FFImageLoading.Forms.Platform;
using FFImageLoading.Forms;
using Android.Runtime;
using Android.Graphics.Drawables;
using Android.Graphics;
using System.IO;
using System.Threading.Tasks;
using FFImageLoading.Forms.Args;
using FFImageLoading.Helpers;
using FFImageLoading.Views;
using Android.Views;
using System.Reflection;
using Android.Content;
using Android.OS;
using AView = Android.Views.View;
namespace FFImageLoading.Forms.Platform
{
/// <summary>
/// CachedImage Implementation
/// </summary>
public class CachedImageFastRenderer : CachedImageView, IVisualElementRenderer
{
internal static readonly Type ElementRendererType = typeof(ImageRenderer).Assembly.GetType("Xamarin.Forms.Platform.Android.FastRenderers.VisualElementRenderer");
private static readonly MethodInfo _viewExtensionsMethod = typeof(ImageRenderer).Assembly.GetType("Xamarin.Forms.Platform.Android.ViewExtensions")?.GetRuntimeMethod("EnsureId", new[] { typeof(Android.Views.View) });
private static readonly MethodInfo _elementRendererTypeOnTouchEvent = ElementRendererType?.GetRuntimeMethod("OnTouchEvent", new[] { typeof(MotionEvent) });
private bool _isDisposed;
private int? _defaultLabelFor;
private VisualElementTracker _visualElementTracker;
private IDisposable _visualElementRenderer;
private IScheduledWork _currentTask;
private ImageSourceBinding _lastImageSource;
private readonly CachedImageRenderer.MotionEventHelper _motionEventHelper = new CachedImageRenderer.MotionEventHelper();
private readonly object _updateBitmapLock = new object();
[Obsolete("This constructor is obsolete as of version 2.5. Please use CachedImageFastRenderer(Context) instead.")]
public CachedImageFastRenderer() : base(Xamarin.Forms.Forms.Context)
{
}
public CachedImageFastRenderer(IntPtr javaReference, JniHandleOwnership transfer) : base(javaReference, transfer)
{
}
public CachedImageFastRenderer(Context context) : base(context)
{
}
public CachedImageFastRenderer(Context context, Android.Util.IAttributeSet attrs): base(context, attrs)
{
}
protected override void Dispose(bool disposing)
{
if (!_isDisposed)
{
_isDisposed = true;
CancelIfNeeded();
if (disposing)
{
if (_visualElementTracker != null)
{
_visualElementTracker.TryDispose();
_visualElementTracker = null;
}
if (_visualElementRenderer != null)
{
_visualElementRenderer.TryDispose();
_visualElementRenderer = null;
}
if (TypedElement != null)
{
TypedElement.PropertyChanged -= OnElementPropertyChanged;
if (Xamarin.Forms.Platform.Android.Platform.GetRenderer(TypedElement) == this)
{
Xamarin.Forms.Platform.Android.Platform.SetRenderer(TypedElement, null);
}
}
}
}
base.Dispose(disposing);
}
private void OnElementChanged(ElementChangedEventArgs<CachedImage> e)
{
_viewExtensionsMethod.Invoke(null, new[] { this });
ElevationHelper.SetElevation(this, e.NewElement);
ElementChanged?.Invoke(this, new VisualElementChangedEventArgs(e.OldElement, e.NewElement));
if (e.OldElement != null)
{
e.OldElement.InternalReloadImage = null;
e.OldElement.InternalCancel = null;
e.OldElement.InternalGetImageAsJPG = null;
e.OldElement.InternalGetImageAsPNG = null;
}
if (e.NewElement != null)
{
e.NewElement.InternalReloadImage = new Action(ReloadImage);
e.NewElement.InternalCancel = new Action(CancelIfNeeded);
e.NewElement.InternalGetImageAsJPG = new Func<GetImageAsJpgArgs, Task<byte[]>>(GetImageAsJpgAsync);
e.NewElement.InternalGetImageAsPNG = new Func<GetImageAsPngArgs, Task<byte[]>>(GetImageAsPngAsync);
_motionEventHelper?.UpdateElement(e.NewElement);
SetBackgroundColor(e.NewElement.BackgroundColor);
UpdateBitmap(Control, TypedElement, e.OldElement);
UpdateAspect();
}
}
public override bool OnTouchEvent(MotionEvent e)
{
if (_elementRendererTypeOnTouchEvent != null && (bool)_elementRendererTypeOnTouchEvent.Invoke(_visualElementRenderer, new[] { e }))
{
return true;
}
if (base.OnTouchEvent(e))
{
return true;
}
return CachedImage.FixedAndroidMotionEventHandler && _motionEventHelper.HandleMotionEvent(Parent, e);
}
private Size MinimumSize()
{
return new Size();
}
SizeRequest IVisualElementRenderer.GetDesiredSize(int widthConstraint, int heightConstraint)
{
if (_isDisposed)
{
return new SizeRequest();
}
Measure(widthConstraint, heightConstraint);
return new SizeRequest(new Size(MeasuredWidth, MeasuredHeight), MinimumSize());
}
void IVisualElementRenderer.SetElement(VisualElement element)
{
if (element == null)
throw new ArgumentNullException(nameof(element));
if (!(element is CachedImage image))
throw new ArgumentException("Element is not of type " + typeof(CachedImage), nameof(element));
var oldElement = TypedElement;
TypedElement = image;
if (oldElement != null)
oldElement.PropertyChanged -= OnElementPropertyChanged;
element.PropertyChanged += OnElementPropertyChanged;
if (_visualElementTracker == null)
_visualElementTracker = new VisualElementTracker(this);
if (_visualElementRenderer == null)
{
_visualElementRenderer = (IDisposable)Activator.CreateInstance(ElementRendererType, this);
}
_motionEventHelper.UpdateElement(element);
OnElementChanged(new ElementChangedEventArgs<CachedImage>(oldElement, TypedElement));
// TODO Xamarin-Internal class - Is it necessary?
//_element?.SendViewInitialized(Control);
}
void IVisualElementRenderer.SetLabelFor(int? id)
{
if (_defaultLabelFor == null)
_defaultLabelFor = LabelFor;
LabelFor = (int)(id ?? _defaultLabelFor);
}
void IVisualElementRenderer.UpdateLayout() => _visualElementTracker?.UpdateLayout();
VisualElement IVisualElementRenderer.Element => TypedElement;
CachedImage TypedElement { get; set; }
VisualElementTracker IVisualElementRenderer.Tracker => _visualElementTracker;
AView IVisualElementRenderer.View => this;
ViewGroup IVisualElementRenderer.ViewGroup => null;
CachedImageView Control => this;
public event EventHandler<VisualElementChangedEventArgs> ElementChanged;
public event EventHandler<PropertyChangedEventArgs> ElementPropertyChanged;
protected virtual void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
{
if (e.PropertyName == CachedImage.SourceProperty.PropertyName)
{
UpdateBitmap(Control, TypedElement, null);
}
if (e.PropertyName == CachedImage.AspectProperty.PropertyName)
{
UpdateAspect();
}
if (e.PropertyName == VisualElement.BackgroundColorProperty.PropertyName)
{
SetBackgroundColor(TypedElement.BackgroundColor);
}
ElementPropertyChanged?.Invoke(this, e);
}
private void SetBackgroundColor(Xamarin.Forms.Color color)
{
Control?.SetBackgroundColor(color.ToAndroid());
}
protected override void OnLayout(bool changed, int left, int top, int right, int bottom)
{
base.OnLayout(changed, left, top, right, bottom);
if ((int)Build.VERSION.SdkInt >= 18)
{
ClipBounds = GetScaleType() == ScaleType.CenterCrop ? new Rect(0, 0, right - left, bottom - top) : null;
}
}
private void UpdateAspect()
{
if (Control == null || Control.Handle == IntPtr.Zero || TypedElement == null || _isDisposed)
return;
if (TypedElement.Aspect == Aspect.AspectFill)
Control.SetScaleType(ScaleType.CenterCrop);
else if (TypedElement.Aspect == Aspect.Fill)
Control.SetScaleType(ScaleType.FitXy);
else
Control.SetScaleType(ScaleType.FitCenter);
}
private void UpdateBitmap(CachedImageView imageView, CachedImage image, CachedImage previousImage)
{
lock (_updateBitmapLock)
{
CancelIfNeeded();
if (image == null || imageView == null || imageView.Handle == IntPtr.Zero || _isDisposed)
return;
var ffSource = ImageSourceBinding.GetImageSourceBinding(image.Source, image);
if (ffSource == null)
{
if (_lastImageSource == null)
return;
_lastImageSource = null;
imageView.SetImageResource(Android.Resource.Color.Transparent);
return;
}
if (previousImage != null && !ffSource.Equals(_lastImageSource))
{
_lastImageSource = null;
imageView.SkipInvalidate();
Control.SetImageResource(Android.Resource.Color.Transparent);
}
image.SetIsLoading(true);
var placeholderSource = ImageSourceBinding.GetImageSourceBinding(image.LoadingPlaceholder, image);
var errorPlaceholderSource = ImageSourceBinding.GetImageSourceBinding(image.ErrorPlaceholder, image);
image.SetupOnBeforeImageLoading(out var imageLoader, ffSource, placeholderSource, errorPlaceholderSource);
if (imageLoader != null)
{
var finishAction = imageLoader.OnFinish;
var sucessAction = imageLoader.OnSuccess;
imageLoader.Finish((work) =>
{
finishAction?.Invoke(work);
ImageLoadingSizeChanged(image, false);
});
imageLoader.Success((imageInformation, loadingResult) =>
{
sucessAction?.Invoke(imageInformation, loadingResult);
_lastImageSource = ffSource;
});
imageLoader.LoadingPlaceholderSet(() => ImageLoadingSizeChanged(image, true));
if (!_isDisposed)
_currentTask = imageLoader.Into(imageView);
}
}
}
private async void ImageLoadingSizeChanged(CachedImage element, bool isLoading)
{
if (element == null || _isDisposed)
return;
await ImageService.Instance.Config.MainThreadDispatcher.PostAsync(() =>
{
if (element == null || _isDisposed)
return;
((IVisualElementController)element).NativeSizeChanged();
if (!isLoading)
element.SetIsLoading(isLoading);
}).ConfigureAwait(false);
}
private void ReloadImage()
{
UpdateBitmap(Control, TypedElement, null);
}
private void CancelIfNeeded()
{
try
{
var taskToCancel = _currentTask;
if (taskToCancel != null && !taskToCancel.IsCancelled)
{
taskToCancel.Cancel();
}
_currentTask = null;
}
catch { }
}
private Task<byte[]> GetImageAsJpgAsync(GetImageAsJpgArgs args)
{
return GetImageAsByteAsync(Bitmap.CompressFormat.Jpeg, args.Quality, args.DesiredWidth, args.DesiredHeight);
}
private Task<byte[]> GetImageAsPngAsync(GetImageAsPngArgs args)
{
return GetImageAsByteAsync(Bitmap.CompressFormat.Png, 90, args.DesiredWidth, args.DesiredHeight);
}
private async Task<byte[]> GetImageAsByteAsync(Bitmap.CompressFormat format, int quality, int desiredWidth, int desiredHeight)
{
if (Control == null)
return null;
if (!(Control.Drawable is BitmapDrawable drawable) || drawable.Bitmap == null)
return null;
var bitmap = drawable.Bitmap;
if (desiredWidth != 0 || desiredHeight != 0)
{
var widthRatio = (double)desiredWidth / bitmap.Width;
var heightRatio = (double)desiredHeight / bitmap.Height;
var scaleRatio = Math.Min(widthRatio, heightRatio);
if (desiredWidth == 0)
scaleRatio = heightRatio;
if (desiredHeight == 0)
scaleRatio = widthRatio;
var aspectWidth = (int)(bitmap.Width * scaleRatio);
var aspectHeight = (int)(bitmap.Height * scaleRatio);
bitmap = Bitmap.CreateScaledBitmap(bitmap, aspectWidth, aspectHeight, true);
}
using (var stream = new MemoryStream())
{
await bitmap.CompressAsync(format, quality, stream).ConfigureAwait(false);
var compressed = stream.ToArray();
if (desiredWidth != 0 || desiredHeight != 0)
{
bitmap.Recycle();
bitmap.TryDispose();
}
return compressed;
}
}
private static bool? _isLollipopOrNewer;
internal static bool IsLollipopOrNewer
{
get
{
if (!_isLollipopOrNewer.HasValue)
_isLollipopOrNewer = (int)Build.VERSION.SdkInt >= 21;
return _isLollipopOrNewer.Value;
}
}
internal static class ElevationHelper
{
private static readonly MethodInfo _getEleveationMethod = typeof(Image).Assembly.GetType("Xamarin.Forms.PlatformConfiguration.AndroidSpecific.Elevation")?.GetRuntimeMethod("GetElevation", new Type[] { typeof(VisualElement) });
internal static void SetElevation(AView view, VisualElement element)
{
if (_getEleveationMethod == null || view == null || element == null || !IsLollipopOrNewer)
{
return;
}
var elevation = (float?)_getEleveationMethod.Invoke(null, new[] { element });
if (elevation.HasValue)
view.Elevation = elevation.Value;
}
}
}
}