Bug 1560038 - Add FluentResource.

Differential Revision: https://phabricator.services.mozilla.com/D54323

Depends on D56641

--HG--
extra : rebase_source : 1087ad4b1f401d942f3be65a1a215b0ef7d1a10e
This commit is contained in:
Zibi Braniecki 2020-03-10 20:05:06 +02:00
Родитель 646dfccfd9
Коммит 8b91a599a2
14 изменённых файлов: 234 добавлений и 0 удалений

10
Cargo.lock сгенерированный
Просмотреть файл

@ -1304,6 +1304,15 @@ dependencies = [
"unic-langid",
]
[[package]]
name = "fluent-ffi"
version = "0.1.0"
dependencies = [
"fluent",
"nsstring",
"unic-langid",
]
[[package]]
name = "fluent-langneg"
version = "0.12.1"
@ -1660,6 +1669,7 @@ dependencies = [
"encoding_glue",
"env_logger",
"fluent",
"fluent-ffi",
"fluent-langneg",
"fluent-langneg-ffi",
"fog",

Просмотреть файл

@ -289,6 +289,11 @@ DOMInterfaces = {
'concrete': True,
},
'FluentResource': {
'headerFile': 'mozilla/intl/FluentResource.h',
'nativeType': 'mozilla::intl::FluentResource',
},
'FontFaceSet': {
'implicitJSContext': [ 'load' ],
},

Просмотреть файл

@ -0,0 +1,9 @@
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
[ChromeOnly, Exposed=Window]
interface FluentResource {
constructor(UTF8String source);
};

Просмотреть файл

@ -44,6 +44,7 @@ WEBIDL_FILES = [
'DominatorTree.webidl',
'DOMLocalization.webidl',
'Flex.webidl',
'Fluent.webidl',
'HeapSnapshot.webidl',
'InspectorUtils.webidl',
'IteratorResult.webidl',

Просмотреть файл

@ -0,0 +1,26 @@
/* 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/. */
#ifndef mozilla_intl_l10n_FluentBindings_h
#define mozilla_intl_l10n_FluentBindings_h
#include "mozilla/intl/fluent_ffi_generated.h"
#include "mozilla/RefPtr.h"
namespace mozilla {
template <>
struct RefPtrTraits<intl::ffi::FluentResource> {
static void AddRef(const intl::ffi::FluentResource* aPtr) {
intl::ffi::fluent_resource_addref(aPtr);
}
static void Release(const intl::ffi::FluentResource* aPtr) {
intl::ffi::fluent_resource_release(aPtr);
}
};
} // namespace mozilla
#endif

Просмотреть файл

@ -0,0 +1,47 @@
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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 "nsContentUtils.h"
#include "FluentResource.h"
using namespace mozilla::dom;
namespace mozilla {
namespace intl {
NS_IMPL_CYCLE_COLLECTION_WRAPPERCACHE(FluentResource, mParent)
NS_IMPL_CYCLE_COLLECTION_ROOT_NATIVE(FluentResource, AddRef)
NS_IMPL_CYCLE_COLLECTION_UNROOT_NATIVE(FluentResource, Release)
FluentResource::FluentResource(nsISupports* aParent, const nsACString& aSource)
: mParent(aParent),
mRaw(dont_AddRef(ffi::fluent_resource_new(&aSource, &mHasErrors))) {
MOZ_COUNT_CTOR(FluentResource);
}
already_AddRefed<FluentResource> FluentResource::Constructor(
const GlobalObject& aGlobal, const nsACString& aSource) {
RefPtr<FluentResource> res =
new FluentResource(aGlobal.GetAsSupports(), aSource);
if (res->mHasErrors) {
nsContentUtils::LogSimpleConsoleError(
NS_LITERAL_STRING("Errors encountered while parsing Fluent Resource."),
"chrome", false, true /* from chrome context*/);
}
return res.forget();
}
JSObject* FluentResource::WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) {
return FluentResource_Binding::Wrap(aCx, this, aGivenProto);
}
FluentResource::~FluentResource() { MOZ_COUNT_DTOR(FluentResource); };
} // namespace intl
} // namespace mozilla

Просмотреть файл

@ -0,0 +1,47 @@
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */
#ifndef mozilla_intl_l10n_FluentResource_h
#define mozilla_intl_l10n_FluentResource_h
#include "mozilla/dom/BindingDeclarations.h"
#include "mozilla/ErrorResult.h"
#include "nsCycleCollectionParticipant.h"
#include "nsWrapperCache.h"
#include "mozilla/dom/FluentBinding.h"
#include "mozilla/intl/FluentBindings.h"
namespace mozilla {
namespace intl {
class FluentResource : public nsWrapperCache {
public:
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(FluentResource)
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_NATIVE_CLASS(FluentResource)
explicit FluentResource(nsISupports* aParent, const nsACString& aSource);
static already_AddRefed<FluentResource> Constructor(
const dom::GlobalObject& aGlobal, const nsACString& aSource);
JSObject* WrapObject(JSContext* aCx,
JS::Handle<JSObject*> aGivenProto) override;
nsISupports* GetParentObject() const { return mParent; }
const ffi::FluentResource* Raw() const { return mRaw; }
protected:
virtual ~FluentResource();
nsCOMPtr<nsISupports> mParent;
const RefPtr<const ffi::FluentResource> mRaw;
bool mHasErrors;
};
} // namespace intl
} // namespace mozilla
#endif

Просмотреть файл

@ -5,10 +5,13 @@
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
EXPORTS.mozilla.intl += [
'FluentBindings.h',
'FluentResource.h',
'Localization.h',
]
UNIFIED_SOURCES += [
'FluentResource.cpp',
'Localization.cpp',
]
@ -32,6 +35,21 @@ LOCAL_INCLUDES += [
'/dom/base',
]
if CONFIG['COMPILE_ENVIRONMENT']:
GENERATED_FILES += [
'fluent_ffi_generated.h',
]
EXPORTS.mozilla.intl += [
'!fluent_ffi_generated.h',
]
ffi_generated = GENERATED_FILES['fluent_ffi_generated.h']
ffi_generated.script = '/build/RunCbindgen.py:generate'
ffi_generated.inputs = [
'/intl/l10n/rust/fluent-ffi',
]
XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell.ini']
MOCHITEST_CHROME_MANIFESTS += ['test/mochitest/chrome.ini']

Просмотреть файл

@ -0,0 +1,10 @@
[package]
name = "fluent-ffi"
version = "0.1.0"
authors = ["Zibi Braniecki <zibi@braniecki.net>"]
edition = "2018"
[dependencies]
fluent = { version = "0.11" , features = ["fluent-pseudo"] }
unic-langid = "0.8"
nsstring = { path = "../../../../xpcom/rust/nsstring" }

Просмотреть файл

@ -0,0 +1,18 @@
header = """/* 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/. */"""
autogen_warning = """/* DO NOT MODIFY THIS MANUALLY! This file was generated using cbindgen. See RunCbindgen.py */
#ifndef mozilla_intl_l10n_FluentBindings_h
#error "Don't include this file directly, instead include FluentBindings.h"
#endif
"""
include_version = true
braces = "SameLine"
line_length = 100
tab_width = 2
language = "C++"
namespaces = ["mozilla", "intl", "ffi"]
[parse]
parse_deps = true
exclude = ["fxhash"]

Просмотреть файл

@ -0,0 +1,3 @@
mod resource;
pub use resource::*;

Просмотреть файл

@ -0,0 +1,38 @@
/* 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/. */
pub use fluent::FluentResource;
use nsstring::nsACString;
use std::mem;
use std::rc::Rc;
#[no_mangle]
pub unsafe extern "C" fn fluent_resource_new(
name: &nsACString,
has_errors: &mut bool,
) -> *const FluentResource {
let res = match FluentResource::try_new(name.to_string()) {
Ok(res) => {
*has_errors = false;
res
}
Err((res, _)) => {
*has_errors = true;
res
}
};
Rc::into_raw(Rc::new(res))
}
#[no_mangle]
pub unsafe extern "C" fn fluent_resource_addref(res: &FluentResource) {
let raw = Rc::from_raw(res);
mem::forget(Rc::clone(&raw));
mem::forget(raw);
}
#[no_mangle]
pub unsafe extern "C" fn fluent_resource_release(res: &FluentResource) {
let _ = Rc::from_raw(res);
}

Просмотреть файл

@ -55,6 +55,7 @@ fluent-langneg = { version = "0.12.1", features = ["cldr"] }
fluent-langneg-ffi = { path = "../../../../intl/locale/rust/fluent-langneg-ffi" }
fluent = { version = "0.11" , features = ["fluent-pseudo"] }
fluent-ffi = { path = "../../../../intl/l10n/rust/fluent-ffi" }
[build-dependencies]
rustc_version = "0.2"

Просмотреть файл

@ -68,6 +68,7 @@ extern crate fluent_langneg;
extern crate fluent_langneg_ffi;
extern crate fluent;
extern crate fluent_ffi;
#[cfg(feature = "remote")]
extern crate remote;