WP_图片管理机制/异步读取网络图片

项目有这样的需求,

要求窗口加载一揽子图片,为了不让UI阻塞太久,采用异步读取后绑定显示的方案.

图片的下载应该采用并发的过程(等待网络响应会很耗时,一张一张的下载,等待时间太长)

图片的下载不能占用过多的线程数,应有个阀值(图片不是核心业务,不能占用那么多资源)

在图片加载的过程中,如果用户有操作,比如窗口跳转,则未加载完成的图片加载的过程应取消(为了替用户节省流量).

需求就是这么多了,如何实现呢?

思路是这样的,由于需要异步,且需要等待,首先想到使用队列,先让队列排列起来,再定量迭代读取.

因为要涉及异步的取消,想到了用WebClient对象的异步功能, 当然,所以发起异步请求之后的对象我都需要记录,

所以还需要一个list容器.

外部接口是两个参数,url,图片的网址,一个回调,定义了图片下载完成后的操作.

内部的核心流程,

1.将一个图片任务从队列中取出,

2.异步发生此请求,

3.将发起请求的对象放进容器,以备撤销时使用.

撤销的核心流程是.

1.让处理线程停止

2.取消队列中的任务,

3.让等待响应的任务取消.

using System;

using System.Windows;

using System.Windows.Media.Imaging;

using Proj.Interface;

 

namespace Proj.Common

{

    /// <summary>

    /// 把网络数据包装为图片源

    /// </summary>

    public class HttpPicGet : IRevocable

    {

        public event GetPicCallback OnImageLoadCompleted;

        public event Action ProcessCompleted;

 

        /// <summary>

        /// 当前正在处理的URL

        /// </summary>

        public string Url;

 

        HttpResourceGet m_httpGet;

        public HttpPicGet()

        {

            m_httpGet = new HttpResourceGet();

            m_httpGet.OnDataStreamGenerated += (stream =>

            {

                Deployment.Current.Dispatcher.BeginInvoke(() =>

                {

                    BitmapSource bi = new BitmapImage();

                    bi.SetSource(stream);

                    if (OnImageLoadCompleted != null)

                    {

                        OnImageLoadCompleted(bi);

                    }

                });

            });

            m_httpGet.ProcessCompleted += (() =>

            {

                //Deployment.Current.Dispatcher.BeginInvoke(() =>

                // {

                     if (ProcessCompleted != null)

                     {

                         ProcessCompleted();

                     }

                 //});

            });

        }

 

        public void BeginLoadPic(string url)

        {

            Url = url;

            m_httpGet.BeginGetData(url);

        }

 

        public void RevokeAsync()

        {

            m_httpGet.RevokeAsync();

        }

    }

}

using System;

using System.IO;

using System.Net;

using System.Windows.Media.Imaging;

using Proj.Interface;

 

namespace Proj.Common

{

    /// <summary>

    /// 从网络读取流的回调

    /// </summary>

    public delegate void GetDataStreamCallback(Stream stream);

 

    /// <summary>

    /// 生成了图片源之后的回调

    /// </summary>

    public delegate void GetPicCallback(BitmapSource bimage);

 

    /// <summary>

    /// 获取网络数据

    /// </summary>

    public class HttpResourceGet : IRevocable

    {

        public event GetDataStreamCallback OnDataStreamGenerated;

        public event Action ProcessCompleted;

        WebClient m_client;

 

        public HttpResourceGet()

        {

            m_client = new WebClient();

            m_client.OpenReadCompleted += ((send, ev) =>

            {

                do

                {

                    if (ev.Error != null || ev.Cancelled)

                    {

                        break;

                    }

                    if (OnDataStreamGenerated != null)

                    {

                        OnDataStreamGenerated(ev.Result);

                        //ev.Result.Close();

                    }

                } while (false);

 

                if (ProcessCompleted != null)

                {

                    ProcessCompleted();

                }

            });

        }

 

        public void BeginGetData(string url)

        {

            if (url.Contains("?"))

            {

                url += "&rand=" + Guid.NewGuid();//加Guid保证调试时无缓存

            }

            else

            {

                url += "?rand=" + Guid.NewGuid();//加Guid保证调试时无缓存

            }

 

            m_client.OpenReadAsync(new Uri(url));

        }

 

        public void RevokeAsync()

        {

            m_client.CancelAsync();

        } 

    }

 

}

using System.ComponentModel;

using System.Windows.Media.Imaging;

 

namespace Proj.Common

{

    public class MyImage : INotifyPropertyChanged

    {

 

        public event PropertyChangedEventHandler PropertyChanged;

        string m_url;

        BitmapSource m_source;

 

        public string URL

        {

            get { return m_url; }

            set

            {

                if (m_url != value)

                {

                    m_url = value;

                    OnPropertyChanged(new PropertyChangedEventArgs("URL"));

                }

            }

        }

 

        public BitmapSource Source

        {

            get { return m_source; }

            set

            {

                if (m_source != value)

                {

                    m_source = value;

                    OnPropertyChanged(new PropertyChangedEventArgs("Source"));

                }

            }

        }

 

        protected virtual void OnPropertyChanged(PropertyChangedEventArgs args)

        {

            if (PropertyChanged != null)

                PropertyChanged(this, args);

        }

    }

}

using System.Collections.Generic;

using System.ComponentModel; 

using System.Threading; 

using Proj.Interface;

 

namespace Proj.Common

{

    /// <summary>

    /// 容器,用来处理多条任务

    /// </summary>

    public class RevocableContainer

    {

        private class QueueItem

        {

            public GetPicCallback action;

            public string url;

        }

 

        const int Threshold =3;

 

        AutoResetEvent m_event;

        int m_count;

        bool m_isThreadProcessing;

        Queue<QueueItem> m_queue;

        List<IRevocable> m_list;

        object m_lock;

        public RevocableContainer()

        {

            m_event = new AutoResetEvent(false);

            m_queue = new Queue<QueueItem>();

            m_list = new List<IRevocable>();

            m_lock = new object();

            m_count = Threshold;

            m_isThreadProcessing = false;

        }

 

        void HttpRequestThread()

        {

            while (true)

            {

                if (m_count == 0)

                {

                    m_event.WaitOne();

                }

                QueueItem item = null;

                //out from queue

                lock (m_queue)

                {

                    if (!m_isThreadProcessing)

                    {

                        break;

                    }

                    if (m_queue.Count == 0)

                    {

                        break;

                    }

 

                    item = m_queue.Dequeue();

                    Interlocked.Decrement(ref  m_count);

 

                }

 

                //do request

                HttpPicGet pic = new HttpPicGet();

                pic.OnImageLoadCompleted += (img =>

                {

                    item.action(img);

                });

 

                pic.ProcessCompleted += (() =>

                {

                    lock (m_list)

                    {

                        m_list.Remove(pic);

                    }

                    if (m_count == 0)

                    {

                        m_event.Set();

                    }

                    Interlocked.Increment(ref m_count);

                });

                pic.BeginLoadPic(item.url);

 

                //into list

                lock (m_list)

                {

                    m_list.Add(pic);

                }

 

                Thread.Sleep(1);

            }

        }

 

 

        public void EnQueue(string url, GetPicCallback action)

        {

            QueueItem item = new QueueItem() { action = action, url = url };

            BackgroundWorker worker = null;

            lock (m_queue)

            {

                m_queue.Enqueue(item);

                if (!m_isThreadProcessing)

                {

                    m_isThreadProcessing = true;

                    worker = new BackgroundWorker();

                }

            }

 

            if (worker != null)

            {

                worker.DoWork += ((send, ev) => HttpRequestThread());

                worker.RunWorkerCompleted += ((send, ev) =>

                {

                    lock (m_queue)

                    {

                        m_isThreadProcessing = false;

                    }

                });

 

                worker.RunWorkerAsync();

            }

 

        }

 

        /// <summary>

        /// 取消全部,并返回未完成的(正在进行的及未开始的)

        /// </summary>

        public List<string> CancelAll()

        {

            List<string> unFinishedUrls=new List<string>();

            lock (m_queue)

            {

                m_isThreadProcessing = false;

                

                if (m_queue.Count > 0)

                {

                    foreach (var queueItem in m_queue)

                    {

                        unFinishedUrls.Add(queueItem.url);

                    }

                }

 

                m_queue.Clear();

            }

            lock (m_list)

            {

                foreach (IRevocable item in m_list)

                {

                    HttpPicGet picGet = (HttpPicGet)item;

                    unFinishedUrls.Add(picGet.Url);

 

                    item.RevokeAsync();

                }

            }

 

            return unFinishedUrls;

        }

    }

}

界面层:

using System;
using System.Collections.Generic;

using System.Linq;

using System.Windows;

using Proj.Common;

using Microsoft.Phone.Controls;

 

namespace Proj

{

    public partial class PageImgTest : PhoneApplicationPage

    {

        RevocableContainer m_container = new RevocableContainer();

 

        List<string> _unFinishUrls = new List<string>();

 

        List<string> sources = new List<string>()

            {

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526395.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526396.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526397.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526398.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526399.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526400.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526401.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526402.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526403.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526404.jpg",

                //"http://gb.cri.cn/mmsource/images/2008/05/26/ei080526405.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526406.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526407.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526408.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526409.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526410.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526411.jpg",

                "http://gb.cri.cn/mmsource/images/2008/05/26/ei080526412.jpg"

            };

 

        // Constructor

        public PageImgTest()

        {

            InitializeComponent();

        }

 

        private void DoClick(object sender, RoutedEventArgs e)

        {

            if (_unFinishUrls.Count > 0)

            {

                StartLoad(_unFinishUrls);

            }

            else

            {

                StartLoad(sources);

            }

        }

 

        private void RevokeClick(object sender, RoutedEventArgs e)

        {

            _unFinishUrls = m_container.CancelAll();

            MessageBox.Show("未完成数:" + _unFinishUrls.Count);

        }

 

        private void BtnRetry_OnClick(object sender, RoutedEventArgs e)

        {

            if (!_isInit || lbContent.Items.Count == 0) return;

            //将未完成的图片继续加载

 

            StartLoad(_unFinishUrls);

        }

 

        private bool _isInit = false;

 

        /// <summary>

        /// 加载/继续加载未完成的

        /// </summary> 

        void StartLoad(List<string> argImgUrls)

        {

            if (argImgUrls == null || argImgUrls.Count == 0) return;

 

            List<MyImage> imgs = new List<MyImage>();

            //MyImage[] imgs = new MyImage[sources.Count];

 

            //for (int i = 0; i < argImgUrls.Count; ++i)

            //{

            //    MyImage imgItem = new MyImage();

            //    imgs.Add(imgItem);

            //    //imgs[i] = new MyImage();

            //    //MyImage imgItem = imgs[i];

            //    imgItem.URL = sources[i] + "?rand=" + Guid.NewGuid().ToString();//加Guid保证调试时无缓存

            //    m_container.EnQueue(imgItem.URL, (bitsource => imgItem.Source = bitsource));

            //}

 

            if (!_isInit)

            {

                for (int i = 0; i < argImgUrls.Count; ++i)

                {

                    MyImage imgItem = new MyImage();

                    imgs.Add(imgItem);

                    imgItem.URL = sources[i];

                    m_container.EnQueue(imgItem.URL, (bitsource => imgItem.Source = bitsource));

                }

 

                lbContent.DataContext = imgs;

            }

            else

            {

                for (int i = 0; i < argImgUrls.Count; ++i)

                {

                    MyImage imgItem = new MyImage();

                    imgs.Add(imgItem);

                    imgItem.URL = argImgUrls[i];

                    m_container.EnQueue(imgItem.URL, (bitsource => imgItem.Source = bitsource));

                }

 

                for (int i = 0; i < lbContent.Items.Count; i++)

                {

                    MyImage myImg = (MyImage)lbContent.Items[i];

               

                    var item = (from c in argImgUrls where c == myImg.URL select c).FirstOrDefault();

                    if (!string.IsNullOrEmpty(item))//匹配上

                    {

                        m_container.EnQueue(item, (bitsource => myImg.Source = bitsource));

                    }

                }

            }

 

            if (!_isInit && imgs.Count > 0)

            {

                _isInit = true;

 

                UpdateLayout();

            }

        }

 

    }

}

<phone:PhoneApplicationPage

    x:Class="Proj.PageImgTest"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"

    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    FontFamily="{StaticResource PhoneFontFamilyNormal}"

    FontSize="{StaticResource PhoneFontSizeNormal}"

    Foreground="{StaticResource PhoneForegroundBrush}"

    SupportedOrientations="Portrait" Orientation="Portrait"

    mc:Ignorable="d"

    shell:SystemTray.IsVisible="True">

 

    <!--LayoutRoot is the root grid where all page content is placed-->

    <Grid x:Name="LayoutRoot" Background="Transparent">

        <Grid.RowDefinitions>

            <RowDefinition Height="Auto"/>

            <RowDefinition Height="*"/>

        </Grid.RowDefinitions>

 

        <ListBox Height="670" x:Name="lbContent" Grid.Row="0" ItemsSource="{Binding}">

            <ListBox.ItemTemplate>

                <DataTemplate>

                    <StackPanel Orientation="Horizontal">

                        <Image Height="100" Width="100" Source="{Binding Source, Mode=OneWay}" />

                        <TextBlock Text="{Binding URL}" />

                    </StackPanel>

                </DataTemplate>

            </ListBox.ItemTemplate>

        </ListBox>

 

        <!--ContentPanel - place additional content here-->

        <Grid x:Name="ContentPanel" Grid.Row="1" VerticalAlignment="Bottom" Margin="12,0,12,0">

            <StackPanel Orientation="Horizontal">

                <Button x:Name="btnDo" Width="100" Height="100" Content="DO" Click="DoClick" />

                <Button x:Name="btnRevoke" Width="100" Height="100" Content="Revoke" Click="RevokeClick"  />

                <Button x:Name="btnRetry" Width="120" Height="100" Content="Retry" Click="BtnRetry_OnClick" />

            </StackPanel>

        </Grid>

    </Grid>

 

</phone:PhoneApplicationPage>

参考地址:http://blog.csdn.net/antsnm/article/details/6738292

WP_图片管理机制/异步读取网络图片,布布扣,bubuko.com

时间: 2024-10-15 22:27:21

WP_图片管理机制/异步读取网络图片的相关文章

Android 利用 AsyncTask 异步读取网络图片

1.新建Android工程AsyncLoadPicture 新建布局文件activity_main.xml主界面为一个GridView,还有其布局文件gridview_item.xml 2.功能主界面MainActivity.java,主代码如下 1 package com.example.asyncloadpicture; 2 3 import java.util.ArrayList; 4 5 import android.app.Activity; 6 import android.cont

tensorflow1.0 队列FIFOQueue管理实现异步读取训练

import tensorflow as tf #模拟异步子线程 存入样本, 主线程 读取样本 # 1. 定义一个队列,1000 Q = tf.FIFOQueue(1000,tf.float32) #2.定义要做的事情 循环 值,+1 放入队列当中 var = tf.Variable(0.0) #实现一个自增 tf.assign_add data = tf.assign_add(var,tf.constant(1.0)) en_q = Q.enqueue(data) #3.定义队列管理器op,指

Android图片管理组件(双缓存+异步加载)

转自:http://www.oschina.net/code/snippet_219356_18887?p=3#comments ImageManager2这个类具有异步从网络下载图片,从sd读取本地图片,内存缓存,硬盘缓存,图片使用动画渐现等功能,已经将其应用在包含大量图片的应用中一年多,没有出现oom Android程序常常会内存溢出,网上也有很多解决方案,如软引用,手动调用recycle等等.但经过我们实践发现这些方案,都没能起到很好的效果,我们的应用依然会出现很多oom,尤其我们的应用包

Linux 内核的文件 Cache 管理机制介绍

Linux 内核的文件 Cache 管理机制介绍 文件 Cache 管理是 Linux 内核中一个很重要并且较难理解的组成部分.本文详细介绍了 Linux 内核中文件 Cache 管理的各个方面,希望能够对开发者理解相关代码有所帮助. http://www.ibm.com/developerworks/cn/linux/l-cache/ http://www.cnblogs.com/MYSQLZOUQI/p/4857437.html 1 前言 自从诞生以来,Linux 就被不断完善和普及,目前它

Linux内存管理机制

一.首先大概了解一下计算机CPU.Cache.内存.硬盘之间的关系及区别. 1.  CPU也称为中央处理器(CPU,Central Processing Unit)是一块超大规模的集成电路, 是一台计算机的运算核心(Core)和控制核心( Control Unit).它的功能主要是解释计算机指令以及处理计算机软件中的数据.中央处理器主要由三核心部件组成,运算器.控制器和总线(BUS),运算器又主要由算术逻辑单元(ALU)和寄存器(RS)组成. 2.Cache即高速缓冲存储器,是位于CPU与主内存

轻量级操作系统FreeRTOS的内存管理机制(三)

本文由嵌入式企鹅圈原创团队成员朱衡德(Hunter_Zhu)供稿. 轻量级操作系统FreeRTOS的内存管理机制(二)中讲到,heap2.c的内存管理机制会导致内存碎片的问题,系统运行久后会出现无法分配大块内存的情况,heap4.c中的管理机制提供了解决方法,它是在heap2.c的基础上添加了地址相邻空闲块间合并的功能,而heap5.c是对heap4.c的进一步扩展,它能够支持多块不连续分布的RAM空间作为堆使用,本篇将对heap4.c.heap5.c中的管理机制进行分析. 一.heap4.c

[转载] python的内存管理机制

本文为转载,原作为http://www.cnblogs.com/CBDoctor/p/3781078.html,请大家支持原作者 先从较浅的层面来说,Python的内存管理机制可以从三个方面来讲 (1)垃圾回收 (2)引用计数 (3)内存池机制 一.垃圾回收: python不像C++,Java等语言一样,他们可以不用事先声明变量类型而直接对变量进行赋值.对Python语言来讲,对象的类型和内存都是在运行时确定的.这也是为什么我们称Python语言为动态类型的原因(这里我们把动态类型可以简单的归结

Android读取网络图片

本文是自己学习所做笔记,欢迎转载,但请注明出处:http://blog.csdn.net/jesson20121020 在android4.0之后,已不同意在主线程中进行网络请求操作了, 否则会出现NetworkOnMainThreadException异常. 而为了解决在android4.0之上能够进行网络的请求,能够有两种方法来解决,以读取网络的图片为例,先看效果图: watermark/2/text/aHR0cDovL2Jsb2cuY3Nkbi5uZXQvamVzc29uMjAxMjEwM

入门级的按键驱动——按键驱动笔记之poll机制-异步通知-同步互斥阻塞-定时器防抖

文章对应视频的第12课,第5.6.7.8节. 在这之前还有查询方式的驱动编写,中断方式的驱动编写,这篇文章中暂时没有这些类容.但这篇文章是以这些为基础写的,前面的内容有空补上. 按键驱动——按下按键,打印键值: 目录 概要 poll机制 异步通知 同步互斥阻塞 定时器防抖 概要: 查询方式: 12-3 缺点:占用CPU99%的资源.中断方式:12-4 缺点:调用read函数后如果没有按键按下,该函数永远不会结束,一直在等待按键按下. 优点:使用到了休眠机制,占用cpu资源极少.poll机制: 1