2018-11-30 19:52:05 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2006-10-19 19:52:34 +00:00
|
|
|
*
|
2012-05-21 11:12:37 +00: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/. */
|
2006-10-19 19:52:34 +00:00
|
|
|
|
|
|
|
#include "nsSound.h"
|
2014-09-21 16:41:41 +00:00
|
|
|
#include "nsContentUtils.h"
|
2008-02-20 23:47:05 +00:00
|
|
|
#include "nsObjCExceptions.h"
|
2006-10-19 21:05:54 +00:00
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsIURL.h"
|
2008-12-05 07:29:17 +00:00
|
|
|
#include "nsString.h"
|
2006-10-19 21:05:54 +00:00
|
|
|
|
2008-02-20 23:47:05 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2014-04-27 07:06:00 +00:00
|
|
|
NS_IMPL_ISUPPORTS(nsSound, nsISound, nsIStreamLoaderObserver)
|
2006-10-19 19:52:34 +00:00
|
|
|
|
2019-01-21 17:18:16 +00:00
|
|
|
nsSound::nsSound() {}
|
2006-10-19 19:52:34 +00:00
|
|
|
|
2019-01-21 17:18:16 +00:00
|
|
|
nsSound::~nsSound() {}
|
2006-10-19 19:52:34 +00:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-01-21 17:18:16 +00:00
|
|
|
nsSound::Beep() {
|
2008-02-20 23:47:05 +00:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
|
|
|
NSBeep();
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2006-10-19 19:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 08:47:10 +00:00
|
|
|
nsSound::OnStreamComplete(nsIStreamLoader* aLoader, nsISupports* context, nsresult aStatus,
|
|
|
|
uint32_t dataLen, const uint8_t* data) {
|
2008-02-20 23:47:05 +00:00
|
|
|
NS_OBJC_BEGIN_TRY_ABORT_BLOCK_NSRESULT;
|
|
|
|
|
2019-05-01 08:47:10 +00:00
|
|
|
NSData* value = [NSData dataWithBytes:data length:dataLen];
|
2008-02-20 23:47:05 +00:00
|
|
|
|
2019-05-01 08:47:10 +00:00
|
|
|
NSSound* sound = [[NSSound alloc] initWithData:value];
|
2006-10-19 21:05:54 +00:00
|
|
|
|
2008-02-20 23:47:05 +00:00
|
|
|
[sound play];
|
2006-10-19 21:05:54 +00:00
|
|
|
|
2008-02-20 23:47:05 +00:00
|
|
|
[sound autorelease];
|
2006-10-19 21:05:54 +00:00
|
|
|
|
2008-02-20 23:47:05 +00:00
|
|
|
return NS_OK;
|
2006-10-19 21:05:54 +00:00
|
|
|
|
2008-02-20 23:47:05 +00:00
|
|
|
NS_OBJC_END_TRY_ABORT_BLOCK_NSRESULT;
|
2006-10-19 19:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-05-01 08:47:10 +00:00
|
|
|
nsSound::Play(nsIURL* aURL) {
|
2018-10-03 19:52:01 +00:00
|
|
|
nsCOMPtr<nsIURI> uri(aURL);
|
2008-02-20 23:47:05 +00:00
|
|
|
nsCOMPtr<nsIStreamLoader> loader;
|
2019-01-21 17:18:16 +00:00
|
|
|
return NS_NewStreamLoader(getter_AddRefs(loader), uri,
|
|
|
|
this, // aObserver
|
2014-09-21 16:41:41 +00:00
|
|
|
nsContentUtils::GetSystemPrincipal(),
|
2020-07-15 11:20:45 +00:00
|
|
|
nsILoadInfo::SEC_ALLOW_CROSS_ORIGIN_SEC_CONTEXT_IS_NULL,
|
2014-09-21 16:41:41 +00:00
|
|
|
nsIContentPolicy::TYPE_OTHER);
|
2006-10-19 19:52:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2019-01-21 17:18:16 +00:00
|
|
|
nsSound::Init() { return NS_OK; }
|
2006-10-19 19:52:34 +00:00
|
|
|
|
2009-07-09 01:55:46 +00:00
|
|
|
NS_IMETHODIMP
|
2019-01-21 17:18:16 +00:00
|
|
|
nsSound::PlayEventSound(uint32_t aEventId) {
|
2009-07-09 01:55:46 +00:00
|
|
|
// Mac doesn't have system sound settings for each user actions.
|
|
|
|
return NS_OK;
|
|
|
|
}
|