2012-07-16 09:38:18 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
|
|
|
#include "VolumeServiceIOThread.h"
|
|
|
|
#include "base/message_loop.h"
|
|
|
|
#include "nsVolumeService.h"
|
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
#include "Volume.h"
|
|
|
|
#include "VolumeManager.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace system {
|
|
|
|
|
2013-01-07 08:43:02 -08:00
|
|
|
VolumeServiceIOThread::VolumeServiceIOThread(nsVolumeService* aVolumeService)
|
2012-12-14 16:01:34 -08:00
|
|
|
: mVolumeService(aVolumeService)
|
2012-07-16 09:38:18 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
|
|
|
|
|
|
|
VolumeManager::RegisterStateObserver(this);
|
|
|
|
Volume::RegisterObserver(this);
|
|
|
|
UpdateAllVolumes();
|
|
|
|
}
|
|
|
|
|
|
|
|
VolumeServiceIOThread::~VolumeServiceIOThread()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
|
|
|
Volume::UnregisterObserver(this);
|
|
|
|
VolumeManager::UnregisterStateObserver(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-07 08:43:02 -08:00
|
|
|
VolumeServiceIOThread::Notify(Volume* const & aVolume)
|
2012-07-16 09:38:18 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
2012-08-09 20:40:05 -07:00
|
|
|
if (VolumeManager::State() != VolumeManager::VOLUMES_READY) {
|
|
|
|
return;
|
|
|
|
}
|
2012-12-14 16:01:34 -08:00
|
|
|
mVolumeService->UpdateVolumeIOThread(aVolume);
|
2012-07-16 09:38:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2013-01-07 08:43:02 -08:00
|
|
|
VolumeServiceIOThread::Notify(const VolumeManager::StateChangedEvent& aEvent)
|
2012-07-16 09:38:18 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
|
|
|
UpdateAllVolumes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
VolumeServiceIOThread::UpdateAllVolumes()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
|
|
|
if (VolumeManager::State() != VolumeManager::VOLUMES_READY) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
VolumeManager::VolumeArray::size_type numVolumes = VolumeManager::NumVolumes();
|
|
|
|
VolumeManager::VolumeArray::index_type volIndex;
|
|
|
|
|
|
|
|
for (volIndex = 0; volIndex < numVolumes; volIndex++) {
|
|
|
|
RefPtr<Volume> vol = VolumeManager::GetVolume(volIndex);
|
2012-12-14 16:01:34 -08:00
|
|
|
mVolumeService->UpdateVolumeIOThread(vol);
|
2012-07-16 09:38:18 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-14 16:01:34 -08:00
|
|
|
static StaticRefPtr<VolumeServiceIOThread> sVolumeServiceIOThread;
|
2012-07-16 09:38:18 -07:00
|
|
|
|
|
|
|
void
|
2013-01-07 08:43:02 -08:00
|
|
|
InitVolumeServiceIOThread(nsVolumeService* const & aVolumeService)
|
2012-07-16 09:38:18 -07:00
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
2012-12-14 16:01:34 -08:00
|
|
|
sVolumeServiceIOThread = new VolumeServiceIOThread(aVolumeService);
|
2012-07-16 09:38:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ShutdownVolumeServiceIOThread()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(MessageLoop::current() == XRE_GetIOMessageLoop());
|
2013-10-28 07:04:47 -07:00
|
|
|
sVolumeServiceIOThread = nullptr;
|
2012-07-16 09:38:18 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
} // system
|
|
|
|
} // mozilla
|