~iwarford/do-plugins/fart-plugin-fwiw

« back to all changes in this revision

Viewing changes to SqueezeCenter/src/Util.cs

  • Committer: Jason Jones
  • Date: 2008-12-24 04:45:02 UTC
  • mfrom: (335.1.9 do-plugins)
  • Revision ID: jasonedwardjones@gmail.com-20081224044502-ra56ym06cp1iqs7t
MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  This program is free software: you can redistribute it and/or modify
 
2
//  it under the terms of the GNU General Public License as published by
 
3
//  the Free Software Foundation, either version 3 of the License, or
 
4
//  (at your option) any later version.
 
5
//
 
6
//  This program is distributed in the hope that it will be useful,
 
7
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
8
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
9
//  GNU General Public License for more details.
 
10
//
 
11
//  You should have received a copy of the GNU General Public License
 
12
//  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
13
 
 
14
using System;
 
15
using System.Collections.Generic;
 
16
 
 
17
namespace SqueezeCenter
 
18
{       
 
19
        public static class Util
 
20
        {               
 
21
                public static IEnumerable<Ttarget> Cast<Tsource, Ttarget> (IEnumerable<Tsource> items)
 
22
                {                                               
 
23
                        foreach (object i in items)
 
24
                                yield return (Ttarget)i;
 
25
                }
 
26
                
 
27
                public static string UriDecode (string s)
 
28
                {
 
29
                        int i = 0;
 
30
                        List<byte> buff = new List<byte> (s.Length);
 
31
                        
 
32
                        while (i < s.Length)
 
33
                        {
 
34
                                if (s[i] == '%')
 
35
                                {
 
36
                                        if (i + 2 < s.Length)
 
37
                                        {
 
38
                                                buff.Add (Byte.Parse(s.Substring (i+1, 2), System.Globalization.NumberStyles.HexNumber));
 
39
                                                i+=3;
 
40
                                        }
 
41
                                        else
 
42
                                        {
 
43
                                                break;
 
44
                                        }
 
45
                                }
 
46
                                else
 
47
                                {
 
48
                                        buff.Add ((byte)s[i++]);
 
49
                                }
 
50
                        }
 
51
                        return System.Text.Encoding.UTF8.GetString (buff.ToArray ());
 
52
                }
 
53
                
 
54
        }
 
55
        
 
56
}