mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
134 lines
4.3 KiB
C++
134 lines
4.3 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
// vim:cindent:ts=2:et:sw=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/. */
|
|
|
|
/* code for loading in @font-face defined font data */
|
|
|
|
#ifndef nsFontFaceLoader_h_
|
|
#define nsFontFaceLoader_h_
|
|
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIStreamLoader.h"
|
|
#include "nsIURI.h"
|
|
#include "nsIChannel.h"
|
|
#include "nsITimer.h"
|
|
#include "gfxUserFontSet.h"
|
|
#include "nsHashKeys.h"
|
|
#include "nsTHashtable.h"
|
|
#include "nsCSSRules.h"
|
|
|
|
class nsIRequest;
|
|
class nsISupports;
|
|
class nsPresContext;
|
|
class nsIPrincipal;
|
|
|
|
class nsFontFaceLoader;
|
|
class nsCSSFontFaceRule;
|
|
|
|
// nsUserFontSet - defines the loading mechanism for downloadable fonts
|
|
class nsUserFontSet : public gfxUserFontSet
|
|
{
|
|
public:
|
|
nsUserFontSet(nsPresContext *aContext);
|
|
~nsUserFontSet();
|
|
|
|
// Called when this font set is no longer associated with a presentation.
|
|
void Destroy();
|
|
|
|
// starts loading process, creating and initializing a nsFontFaceLoader obj
|
|
// returns whether load process successfully started or not
|
|
nsresult StartLoad(gfxProxyFontEntry *aFontToLoad,
|
|
const gfxFontFaceSrc *aFontFaceSrc);
|
|
|
|
// Called by nsFontFaceLoader when the loader has completed normally.
|
|
// It's removed from the mLoaders set.
|
|
void RemoveLoader(nsFontFaceLoader *aLoader);
|
|
|
|
bool UpdateRules(const nsTArray<nsFontFaceRuleContainer>& aRules);
|
|
|
|
nsPresContext *GetPresContext() { return mPresContext; }
|
|
|
|
virtual void ReplaceFontEntry(gfxProxyFontEntry *aProxy,
|
|
gfxFontEntry *aFontEntry);
|
|
|
|
nsCSSFontFaceRule *FindRuleForEntry(gfxFontEntry *aFontEntry);
|
|
|
|
protected:
|
|
// The font-set keeps track of the collection of rules, and their
|
|
// corresponding font entries (whether proxies or real entries),
|
|
// so that we can update the set without having to throw away
|
|
// all the existing fonts.
|
|
struct FontFaceRuleRecord {
|
|
nsRefPtr<gfxFontEntry> mFontEntry;
|
|
nsFontFaceRuleContainer mContainer;
|
|
};
|
|
|
|
void InsertRule(nsCSSFontFaceRule *aRule, uint8_t aSheetType,
|
|
nsTArray<FontFaceRuleRecord>& oldRules,
|
|
bool& aFontSetModified);
|
|
|
|
virtual nsresult LogMessage(gfxProxyFontEntry *aProxy,
|
|
const char *aMessage,
|
|
uint32_t aFlags = nsIScriptError::errorFlag,
|
|
nsresult aStatus = NS_OK);
|
|
|
|
nsresult CheckFontLoad(gfxProxyFontEntry *aFontToLoad,
|
|
const gfxFontFaceSrc *aFontFaceSrc,
|
|
nsIPrincipal **aPrincipal);
|
|
|
|
virtual nsresult SyncLoadFontData(gfxProxyFontEntry *aFontToLoad,
|
|
const gfxFontFaceSrc *aFontFaceSrc,
|
|
uint8_t* &aBuffer,
|
|
uint32_t &aBufferLength);
|
|
|
|
nsPresContext *mPresContext; // weak reference
|
|
|
|
// Set of all loaders pointing to us. These are not strong pointers,
|
|
// but that's OK because nsFontFaceLoader always calls RemoveLoader on
|
|
// us before it dies (unless we die first).
|
|
nsTHashtable< nsPtrHashKey<nsFontFaceLoader> > mLoaders;
|
|
|
|
nsTArray<FontFaceRuleRecord> mRules;
|
|
};
|
|
|
|
class nsFontFaceLoader : public nsIStreamLoaderObserver
|
|
{
|
|
public:
|
|
|
|
nsFontFaceLoader(gfxProxyFontEntry *aFontToLoad, nsIURI *aFontURI,
|
|
nsUserFontSet *aFontSet, nsIChannel *aChannel);
|
|
virtual ~nsFontFaceLoader();
|
|
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSISTREAMLOADEROBSERVER
|
|
|
|
// initiate the load
|
|
nsresult Init();
|
|
// cancel the load and remove its reference to mFontSet
|
|
void Cancel();
|
|
|
|
void DropChannel() { mChannel = nullptr; }
|
|
|
|
void StartedLoading(nsIStreamLoader *aStreamLoader);
|
|
|
|
static void LoadTimerCallback(nsITimer *aTimer, void *aClosure);
|
|
|
|
static nsresult CheckLoadAllowed(nsIPrincipal* aSourcePrincipal,
|
|
nsIURI* aTargetURI,
|
|
nsISupports* aContext);
|
|
|
|
private:
|
|
nsRefPtr<gfxProxyFontEntry> mFontEntry;
|
|
nsRefPtr<gfxFontFamily> mFontFamily;
|
|
nsCOMPtr<nsIURI> mFontURI;
|
|
nsRefPtr<nsUserFontSet> mFontSet;
|
|
nsCOMPtr<nsIChannel> mChannel;
|
|
nsCOMPtr<nsITimer> mLoadTimer;
|
|
|
|
nsIStreamLoader *mStreamLoader;
|
|
};
|
|
|
|
#endif /* !defined(nsFontFaceLoader_h_) */
|