2012-09-05 21:57:54 -07:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla Public License Version
|
|
|
|
* 1.1 (the "License"); you may not use this file except in compliance with
|
|
|
|
* the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Foundation code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is the Mozilla Foundation
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2011
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
|
|
|
* Edwin Flores <eflores@mozilla.com>
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
|
|
|
#include "gfxSVGGlyphs.h"
|
|
|
|
|
|
|
|
#include "nscore.h"
|
|
|
|
#include "nsError.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsIParser.h"
|
|
|
|
#include "nsIDOMNodeList.h"
|
|
|
|
#include "nsString.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
#include "nsICategoryManager.h"
|
|
|
|
#include "nsIDocumentLoaderFactory.h"
|
|
|
|
#include "nsIContentViewer.h"
|
|
|
|
#include "nsIStreamListener.h"
|
|
|
|
#include "nsServiceManagerUtils.h"
|
|
|
|
#include "nsIPresShell.h"
|
|
|
|
#include "nsIFrame.h"
|
|
|
|
#include "nsQueryFrame.h"
|
|
|
|
#include "nsIContentSink.h"
|
|
|
|
#include "nsXMLContentSink.h"
|
|
|
|
#include "nsNetUtil.h"
|
|
|
|
#include "nsIInputStream.h"
|
|
|
|
#include "nsStringStream.h"
|
|
|
|
#include "nsStreamUtils.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "Element.h"
|
2012-12-11 15:15:07 -08:00
|
|
|
#include "nsSVGUtils.h"
|
2012-09-05 21:57:54 -07:00
|
|
|
|
|
|
|
#define SVG_CONTENT_TYPE NS_LITERAL_CSTRING("image/svg+xml")
|
|
|
|
#define UTF8_CHARSET NS_LITERAL_CSTRING("utf-8")
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
typedef mozilla::dom::Element Element;
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-05 21:58:46 -07:00
|
|
|
mozilla::gfx::UserDataKey gfxTextObjectPaint::sUserDataKey;
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-05 21:58:46 -07:00
|
|
|
const float gfxSVGGlyphs::SVG_UNITS_PER_EM = 1000.0f;
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
const gfxRGBA SimpleTextObjectPaint::sZero = gfxRGBA(0.0f, 0.0f, 0.0f, 0.0f);
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
gfxSVGGlyphs::gfxSVGGlyphs(FallibleTArray<uint8_t>& aSVGTable,
|
|
|
|
const FallibleTArray<uint8_t>& aCmapTable)
|
2012-09-05 21:57:54 -07:00
|
|
|
{
|
2012-09-05 21:58:47 -07:00
|
|
|
mSVGData.SwapElements(aSVGTable);
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
mHeader = reinterpret_cast<Header*>(mSVGData.Elements());
|
|
|
|
UnmangleHeaders();
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
mGlyphDocs.Init();
|
|
|
|
mGlyphIdMap.Init();
|
|
|
|
mCmapData = aCmapTable;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gfxSVGGlyphs::UnmangleHeaders()
|
|
|
|
{
|
|
|
|
mHeader->mIndexLength = NS_SWAP16(mHeader->mIndexLength);
|
|
|
|
|
|
|
|
mIndex = reinterpret_cast<IndexEntry*>(mSVGData.Elements() + sizeof(Header));
|
|
|
|
|
|
|
|
for (uint16_t i = 0; i < mHeader->mIndexLength; i++) {
|
|
|
|
mIndex[i].mStartGlyph = NS_SWAP16(mIndex[i].mStartGlyph);
|
|
|
|
mIndex[i].mEndGlyph = NS_SWAP16(mIndex[i].mEndGlyph);
|
|
|
|
mIndex[i].mDocOffset = NS_SWAP32(mIndex[i].mDocOffset);
|
|
|
|
mIndex[i].mDocLength = NS_SWAP32(mIndex[i].mDocLength);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Comparison operator for finding a range containing a given glyph ID. Simply
|
|
|
|
* checks whether |key| is less (greater) than every element of |range|, in
|
|
|
|
* which case return |key| < |range| (|key| > |range|). Otherwise |key| is in
|
|
|
|
* |range|, in which case return equality.
|
|
|
|
* The total ordering here is guaranteed by
|
|
|
|
* (1) the index ranges being disjoint; and
|
|
|
|
* (2) the (sole) key always being a singleton, so intersection => containment
|
|
|
|
* (note that this is wrong if we have more than one intersection or two
|
|
|
|
* sets intersecting of size > 1 -- so... don't do that)
|
|
|
|
*/
|
|
|
|
/* static */ int
|
|
|
|
gfxSVGGlyphs::CompareIndexEntries(const void *_key, const void *_entry)
|
|
|
|
{
|
|
|
|
const uint32_t key = *(uint32_t*)_key;
|
|
|
|
const IndexEntry *entry = (const IndexEntry*)_entry;
|
|
|
|
|
|
|
|
if (key < entry->mStartGlyph) return -1;
|
|
|
|
if (key >= entry->mEndGlyph) return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxSVGGlyphsDocument *
|
|
|
|
gfxSVGGlyphs::FindOrCreateGlyphsDocument(uint32_t aGlyphId)
|
|
|
|
{
|
|
|
|
IndexEntry *entry = (IndexEntry*)bsearch(&aGlyphId, mIndex,
|
|
|
|
mHeader->mIndexLength,
|
|
|
|
sizeof(IndexEntry),
|
|
|
|
CompareIndexEntries);
|
|
|
|
if (!entry) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxSVGGlyphsDocument *result = mGlyphDocs.Get(entry->mDocOffset);
|
|
|
|
|
|
|
|
if (!result) {
|
|
|
|
result = new gfxSVGGlyphsDocument(mSVGData.Elements() + entry->mDocOffset,
|
|
|
|
entry->mDocLength, mCmapData);
|
|
|
|
mGlyphDocs.Put(entry->mDocOffset, result);
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
gfxSVGGlyphsDocument::SetupPresentation()
|
|
|
|
{
|
|
|
|
mDocument->SetIsBeingUsedAsImage();
|
2012-09-05 21:57:54 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsICategoryManager> catMan = do_GetService(NS_CATEGORYMANAGER_CONTRACTID);
|
|
|
|
nsXPIDLCString contractId;
|
2012-09-05 21:58:47 -07:00
|
|
|
nsresult rv = catMan->GetCategoryEntry("Gecko-Content-Viewers", "image/svg+xml", getter_Copies(contractId));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-09-05 21:57:54 -07:00
|
|
|
|
|
|
|
nsCOMPtr<nsIDocumentLoaderFactory> docLoaderFactory = do_GetService(contractId);
|
|
|
|
NS_ASSERTION(docLoaderFactory, "Couldn't get DocumentLoaderFactory");
|
|
|
|
|
|
|
|
nsCOMPtr<nsIContentViewer> viewer;
|
2012-09-05 21:58:47 -07:00
|
|
|
rv = docLoaderFactory->CreateInstanceForDocument(nullptr, mDocument, nullptr, getter_AddRefs(viewer));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-09-05 21:57:54 -07:00
|
|
|
|
|
|
|
rv = viewer->Init(nullptr, nsIntRect(0, 0, 1000, 1000));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
rv = viewer->Open(nullptr, nullptr);
|
2012-09-05 21:58:47 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-09-05 21:57:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPresShell> presShell;
|
|
|
|
rv = viewer->GetPresShell(getter_AddRefs(presShell));
|
2012-09-05 21:58:47 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-09-05 21:58:46 -07:00
|
|
|
presShell->GetPresContext()->SetIsGlyph(true);
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-06 21:16:09 -07:00
|
|
|
if (!presShell->DidInitialize()) {
|
2012-09-05 21:57:54 -07:00
|
|
|
nsRect rect = presShell->GetPresContext()->GetVisibleArea();
|
2012-09-06 21:16:09 -07:00
|
|
|
rv = presShell->Initialize(rect.width, rect.height);
|
2012-09-05 21:58:47 -07:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2012-09-05 21:57:54 -07:00
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
mDocument->FlushPendingNotifications(Flush_Layout);
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
mViewer = viewer;
|
|
|
|
mPresShell = presShell;
|
2012-09-05 21:57:54 -07:00
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
return NS_OK;
|
2012-09-05 21:57:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Walk the DOM tree to find all glyph elements and insert them into the lookup
|
|
|
|
* table
|
|
|
|
* @param aElem The element to search from
|
|
|
|
* @param aCmapTable Buffer containing the raw cmap table data
|
|
|
|
*/
|
|
|
|
void
|
2012-09-05 21:58:47 -07:00
|
|
|
gfxSVGGlyphsDocument::FindGlyphElements(Element *aElem,
|
|
|
|
const FallibleTArray<uint8_t> &aCmapTable)
|
2012-09-05 21:57:54 -07:00
|
|
|
{
|
|
|
|
for (nsIContent *child = aElem->GetLastChild(); child;
|
|
|
|
child = child->GetPreviousSibling()) {
|
|
|
|
if (!child->IsElement()) {
|
|
|
|
continue;
|
|
|
|
}
|
2012-09-05 21:58:47 -07:00
|
|
|
FindGlyphElements(child->AsElement(), aCmapTable);
|
2012-09-05 21:57:54 -07:00
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
InsertGlyphChar(aElem, aCmapTable);
|
2012-09-05 21:57:54 -07:00
|
|
|
InsertGlyphId(aElem);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* If there exists an SVG glyph with the specified glyph id, render it and return true
|
|
|
|
* If no such glyph exists, or in the case of an error return false
|
|
|
|
* @param aContext The thebes aContext to draw to
|
|
|
|
* @param aGlyphId The glyph id
|
|
|
|
* @param aDrawMode Whether to fill or stroke or both (see |gfxFont::DrawMode|)
|
|
|
|
* @return true iff rendering succeeded
|
|
|
|
*/
|
|
|
|
bool
|
|
|
|
gfxSVGGlyphs::RenderGlyph(gfxContext *aContext, uint32_t aGlyphId,
|
2012-09-05 21:58:46 -07:00
|
|
|
DrawMode aDrawMode, gfxTextObjectPaint *aObjectPaint)
|
2012-09-05 21:57:54 -07:00
|
|
|
{
|
|
|
|
if (aDrawMode == gfxFont::GLYPH_PATH) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxContextAutoSaveRestore aContextRestorer(aContext);
|
|
|
|
|
|
|
|
Element *glyph = mGlyphIdMap.Get(aGlyphId);
|
|
|
|
NS_ASSERTION(glyph, "No glyph element. Should check with HasSVGGlyph() first!");
|
|
|
|
|
2012-12-11 15:15:07 -08:00
|
|
|
return nsSVGUtils::PaintSVGGlyph(glyph, aContext, aDrawMode, aObjectPaint);
|
2012-09-05 21:57:54 -07:00
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:46 -07:00
|
|
|
bool
|
|
|
|
gfxSVGGlyphs::GetGlyphExtents(uint32_t aGlyphId, const gfxMatrix& aSVGToAppSpace,
|
|
|
|
gfxRect *aResult)
|
|
|
|
{
|
|
|
|
Element *glyph = mGlyphIdMap.Get(aGlyphId);
|
|
|
|
NS_ASSERTION(glyph, "No glyph element. Should check with HasSVGGlyph() first!");
|
|
|
|
|
2012-12-11 15:15:07 -08:00
|
|
|
return nsSVGUtils::GetSVGGlyphExtents(glyph, aSVGToAppSpace, aResult);
|
2012-09-05 21:58:46 -07:00
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
Element *
|
|
|
|
gfxSVGGlyphs::GetGlyphElement(uint32_t aGlyphId)
|
|
|
|
{
|
|
|
|
Element *elem;
|
|
|
|
|
|
|
|
if (!mGlyphIdMap.Get(aGlyphId, &elem)) {
|
|
|
|
elem = nullptr;
|
|
|
|
if (gfxSVGGlyphsDocument *set = FindOrCreateGlyphsDocument(aGlyphId)) {
|
|
|
|
elem = set->GetGlyphElement(aGlyphId);
|
|
|
|
}
|
|
|
|
mGlyphIdMap.Put(aGlyphId, elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
return elem;
|
|
|
|
}
|
|
|
|
|
2012-09-05 21:57:54 -07:00
|
|
|
bool
|
|
|
|
gfxSVGGlyphs::HasSVGGlyph(uint32_t aGlyphId)
|
|
|
|
{
|
2012-09-05 21:58:47 -07:00
|
|
|
return !!GetGlyphElement(aGlyphId);
|
2012-09-05 21:57:54 -07:00
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
Element *
|
|
|
|
gfxSVGGlyphsDocument::GetGlyphElement(uint32_t aGlyphId)
|
|
|
|
{
|
|
|
|
return mGlyphIdMap.Get(aGlyphId);
|
|
|
|
}
|
|
|
|
|
|
|
|
gfxSVGGlyphsDocument::gfxSVGGlyphsDocument(uint8_t *aBuffer, uint32_t aBufLen,
|
|
|
|
const FallibleTArray<uint8_t>& aCmapTable)
|
|
|
|
{
|
|
|
|
mGlyphIdMap.Init();
|
|
|
|
ParseDocument(aBuffer, aBufLen);
|
|
|
|
if (!mDocument) {
|
|
|
|
NS_WARNING("Could not parse SVG glyphs document");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Element *root = mDocument->GetRootElement();
|
|
|
|
if (!root) {
|
|
|
|
NS_WARNING("Could not parse SVG glyphs document");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv = SetupPresentation();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
NS_WARNING("Couldn't setup presentation for SVG glyphs document");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
FindGlyphElements(root, aCmapTable);
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult
|
2012-09-05 21:57:54 -07:00
|
|
|
CreateBufferedStream(uint8_t *aBuffer, uint32_t aBufLen,
|
|
|
|
nsCOMPtr<nsIInputStream> &aResult)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIInputStream> stream;
|
|
|
|
nsresult rv = NS_NewByteInputStream(getter_AddRefs(stream),
|
|
|
|
reinterpret_cast<const char *>(aBuffer),
|
|
|
|
aBufLen, NS_ASSIGNMENT_DEPEND);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> aBufferedStream;
|
|
|
|
if (!NS_InputStreamIsBuffered(stream)) {
|
|
|
|
rv = NS_NewBufferedInputStream(getter_AddRefs(aBufferedStream), stream, 4096);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
stream = aBufferedStream;
|
|
|
|
}
|
|
|
|
|
|
|
|
aResult = stream;
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
nsresult
|
|
|
|
gfxSVGGlyphsDocument::ParseDocument(uint8_t *aBuffer, uint32_t aBufLen)
|
2012-09-05 21:57:54 -07:00
|
|
|
{
|
|
|
|
// Mostly pulled from nsDOMParser::ParseFromStream
|
|
|
|
|
|
|
|
nsCOMPtr<nsIInputStream> stream;
|
|
|
|
nsresult rv = CreateBufferedStream(aBuffer, aBufLen, stream);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIPrincipal> principal =
|
|
|
|
do_CreateInstance("@mozilla.org/nullprincipal;1", &rv);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIURI> uri;
|
|
|
|
principal->GetURI(getter_AddRefs(uri));
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMDocument> domDoc;
|
|
|
|
rv = NS_NewDOMDocument(getter_AddRefs(domDoc),
|
|
|
|
EmptyString(), // aNamespaceURI
|
|
|
|
EmptyString(), // aQualifiedName
|
|
|
|
nullptr, // aDoctype
|
|
|
|
uri, uri, principal,
|
|
|
|
false, // aLoadedAsData
|
|
|
|
nullptr, // aEventObject
|
|
|
|
DocumentFlavorSVG);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIChannel> channel;
|
|
|
|
rv = NS_NewInputStreamChannel(getter_AddRefs(channel), uri, nullptr /* stream */,
|
|
|
|
SVG_CONTENT_TYPE, UTF8_CHARSET);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
channel->SetOwner(principal);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDocument> document(do_QueryInterface(domDoc));
|
|
|
|
if (!document) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
document->SetReadyStateInternal(nsIDocument::READYSTATE_UNINITIALIZED);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIStreamListener> listener;
|
|
|
|
rv = document->StartDocumentLoad("external-resource", channel,
|
|
|
|
nullptr, // aLoadGroup
|
|
|
|
nullptr, // aContainer
|
|
|
|
getter_AddRefs(listener),
|
|
|
|
true /* aReset */);
|
|
|
|
if (NS_FAILED(rv) || !listener) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
document->SetBaseURI(uri);
|
|
|
|
document->SetPrincipal(principal);
|
|
|
|
|
|
|
|
rv = listener->OnStartRequest(channel, nullptr /* aContext */);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
channel->Cancel(rv);
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult status;
|
|
|
|
channel->GetStatus(&status);
|
|
|
|
if (NS_SUCCEEDED(rv) && NS_SUCCEEDED(status)) {
|
|
|
|
rv = listener->OnDataAvailable(channel, nullptr /* aContext */, stream, 0, aBufLen);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
channel->Cancel(rv);
|
|
|
|
}
|
|
|
|
channel->GetStatus(&status);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = listener->OnStopRequest(channel, nullptr /* aContext */, status);
|
|
|
|
NS_ENSURE_SUCCESS(rv, NS_ERROR_FAILURE);
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
document.swap(mDocument);
|
2012-09-05 21:57:54 -07:00
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-09-05 21:58:47 -07:00
|
|
|
gfxSVGGlyphsDocument::InsertGlyphId(Element *aGlyphElement)
|
2012-09-05 21:57:54 -07:00
|
|
|
{
|
|
|
|
nsAutoString glyphIdStr;
|
|
|
|
if (!aGlyphElement->GetAttr(kNameSpaceID_None, nsGkAtoms::glyphid, glyphIdStr)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
uint32_t glyphId = glyphIdStr.ToInteger(&rv, kRadix10);
|
|
|
|
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
mGlyphIdMap.Put(glyphId, aGlyphElement);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2012-09-05 21:58:47 -07:00
|
|
|
gfxSVGGlyphsDocument::InsertGlyphChar(Element *aGlyphElement,
|
|
|
|
const FallibleTArray<uint8_t> &aCmapTable)
|
2012-09-05 21:57:54 -07:00
|
|
|
{
|
|
|
|
nsAutoString glyphChar;
|
|
|
|
if (!aGlyphElement->GetAttr(kNameSpaceID_None, nsGkAtoms::glyphchar, glyphChar)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t varSelector;
|
|
|
|
|
|
|
|
switch (glyphChar.Length()) {
|
|
|
|
case 0:
|
|
|
|
NS_WARNING("glyphchar is empty");
|
|
|
|
return;
|
|
|
|
case 1:
|
|
|
|
varSelector = 0;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (gfxFontUtils::IsVarSelector(glyphChar.CharAt(1))) {
|
|
|
|
varSelector = glyphChar.CharAt(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
NS_WARNING("glyphchar contains more than one character");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t glyphId = gfxFontUtils::MapCharToGlyph(aCmapTable.Elements(),
|
|
|
|
aCmapTable.Length(),
|
|
|
|
glyphChar.CharAt(0),
|
|
|
|
varSelector);
|
|
|
|
|
|
|
|
if (glyphId) {
|
|
|
|
mGlyphIdMap.Put(glyphId, aGlyphElement);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-05 21:58:47 -07:00
|
|
|
void
|
|
|
|
gfxTextObjectPaint::InitStrokeGeometry(gfxContext *aContext,
|
|
|
|
float devUnitsPerSVGUnit)
|
|
|
|
{
|
|
|
|
mStrokeWidth = aContext->CurrentLineWidth() / devUnitsPerSVGUnit;
|
|
|
|
aContext->CurrentDash(mDashes, &mDashOffset);
|
|
|
|
for (uint32_t i = 0; i < mDashes.Length(); i++) {
|
|
|
|
mDashes[i] /= devUnitsPerSVGUnit;
|
|
|
|
}
|
|
|
|
mDashOffset /= devUnitsPerSVGUnit;
|
|
|
|
}
|