~kelemeng/banshee/bug743928

« back to all changes in this revision

Viewing changes to src/Backends/Banshee.Hal/Banshee.HalBackend/DiscVolume.cs

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2011-05-14 22:25:36 UTC
  • mfrom: (6.3.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20110514222536-u1x7ikxdqkmfvyuz
Tags: 2.1.0-1ubuntu1
* [2396c18] Merge from Debian Unstable, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + Create the U1MS widget earlier and bump libu1 requirement
* [9d7c600] Drop upstreamed u1ms-initialize-earlier patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
//
2
 
// DiscVolume.cs
3
 
//
4
 
// Author:
5
 
//   Aaron Bockover <abockover@novell.com>
6
 
//
7
 
// Copyright (C) 2008 Novell, Inc.
8
 
//
9
 
// Permission is hereby granted, free of charge, to any person obtaining
10
 
// a copy of this software and associated documentation files (the
11
 
// "Software"), to deal in the Software without restriction, including
12
 
// without limitation the rights to use, copy, modify, merge, publish,
13
 
// distribute, sublicense, and/or sell copies of the Software, and to
14
 
// permit persons to whom the Software is furnished to do so, subject to
15
 
// the following conditions:
16
 
//
17
 
// The above copyright notice and this permission notice shall be
18
 
// included in all copies or substantial portions of the Software.
19
 
//
20
 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21
 
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22
 
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23
 
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24
 
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25
 
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26
 
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27
 
//
28
 
 
29
 
using System;
30
 
 
31
 
using Banshee.Hardware;
32
 
 
33
 
namespace Banshee.HalBackend
34
 
{
35
 
    public class DiscVolume : Volume, IDiscVolume
36
 
    {
37
 
        public new static DiscVolume Resolve (BlockDevice parent, Hal.Manager manager, Hal.Device device)
38
 
        {
39
 
            return device.QueryCapability ("volume.disc") ? new DiscVolume (parent, manager, device) : null;
40
 
        }
41
 
 
42
 
        private DiscVolume (BlockDevice parent, Hal.Manager manager, Hal.Device device) : base (parent, manager, device)
43
 
        {
44
 
        }
45
 
 
46
 
        public bool HasAudio {
47
 
            get { return HalDevice.GetPropertyBoolean ("volume.disc.has_audio"); }
48
 
        }
49
 
 
50
 
        public bool HasData {
51
 
            get { return HalDevice.GetPropertyBoolean ("volume.disc.has_data"); }
52
 
        }
53
 
 
54
 
        public bool IsBlank {
55
 
            get { return HalDevice.GetPropertyBoolean ("volume.disc.is_blank"); }
56
 
        }
57
 
 
58
 
        public bool IsRewritable {
59
 
            get { return HalDevice.GetPropertyBoolean ("volume.disc.is_rewritable"); }
60
 
        }
61
 
 
62
 
        public ulong MediaCapacity {
63
 
            get { return HalDevice.GetPropertyUInt64 ("volume.disc.capacity"); }
64
 
        }
65
 
 
66
 
        public override string ToString ()
67
 
        {
68
 
            return String.Format ("Optical Disc, Audio = {0}, Data = {1}, Blank = {2}, Rewritable = {3}, Media Capacity = {4}",
69
 
                HasAudio, HasData, IsBlank, IsRewritable, MediaCapacity);
70
 
        }
71
 
    }
72
 
}