2007-03-22 10:30:00 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
2012-05-21 04:12:37 -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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#include "nsSound.h"
|
2008-02-20 15:47:05 -08:00
|
|
|
#include "nsObjCExceptions.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIURL.h"
|
2008-12-04 23:29:17 -08:00
|
|
|
#include "nsString.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-20 15:47:05 -08:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2008-07-14 06:04:24 -07:00
|
|
|
NS_IMPL_ISUPPORTS2(nsSound, nsISound, nsIStreamLoaderObserver)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
nsSound::nsSound()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
nsSound::~nsSound()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::Beep()
|
|
|
|
{
|
2008-02-20 15:47:05 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
NSBeep();
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::OnStreamComplete(nsIStreamLoader *aLoader,
|
|
|
|
nsISupports *context,
|
|
|
|
nsresult aStatus,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t dataLen,
|
|
|
|
const uint8_t *data)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2008-02-20 15:47:05 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
NSData *value = [NSData dataWithBytes:data length:dataLen];
|
|
|
|
|
|
|
|
NSSound *sound = [[NSSound alloc] initWithData:value];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-20 15:47:05 -08:00
|
|
|
[sound play];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-20 15:47:05 -08:00
|
|
|
[sound autorelease];
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-20 15:47:05 -08:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2008-02-20 15:47:05 -08:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::Play(nsIURL *aURL)
|
|
|
|
{
|
2008-02-20 15:47:05 -08:00
|
|
|
nsCOMPtr<nsIURI> uri(do_QueryInterface(aURL));
|
|
|
|
nsCOMPtr<nsIStreamLoader> loader;
|
|
|
|
return NS_NewStreamLoader(getter_AddRefs(loader), uri, this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::Init()
|
|
|
|
{
|
2008-02-20 15:47:05 -08:00
|
|
|
return NS_OK;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsSound::PlaySystemSound(const nsAString &aSoundAlias)
|
|
|
|
{
|
2009-01-06 06:57:22 -08:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
if (NS_IsMozAliasSound(aSoundAlias)) {
|
2009-07-08 18:55:46 -07:00
|
|
|
NS_WARNING("nsISound::playSystemSound is called with \"_moz_\" events, they are obsolete, use nsISound::playEventSound instead");
|
2009-01-06 06:57:22 -08:00
|
|
|
// Mac doesn't have system sound settings for each user actions.
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString *name = [NSString stringWithCharacters:aSoundAlias.BeginReading()
|
|
|
|
length:aSoundAlias.Length()];
|
|
|
|
NSSound *sound = [NSSound soundNamed:name];
|
|
|
|
if (sound) {
|
|
|
|
[sound stop];
|
|
|
|
[sound play];
|
|
|
|
}
|
|
|
|
|
2008-02-20 15:47:05 -08:00
|
|
|
return NS_OK;
|
2009-01-06 06:57:22 -08:00
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
2009-07-08 18:55:46 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2012-08-22 08:56:38 -07:00
|
|
|
nsSound::PlayEventSound(uint32_t aEventId)
|
2009-07-08 18:55:46 -07:00
|
|
|
{
|
|
|
|
// Mac doesn't have system sound settings for each user actions.
|
|
|
|
return NS_OK;
|
|
|
|
}
|