/* * Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. Oracle designates this * particular file as subject to the "Classpath" exception as provided * by Oracle in the LICENSE file that accompanied this code. * * This code is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * version 2 for more details (a copy is included in the LICENSE file that * accompanied this code). * * You should have received a copy of the GNU General Public License version * 2 along with this work; if not, write to the Free Software Foundation, * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA * or visit www.oracle.com if you need additional information or have any * questions. */ package com.sun.webkit.perf; import com.sun.javafx.logging.PlatformLogger; import com.sun.webkit.graphics.WCFont; import com.sun.webkit.graphics.WCGlyphBuffer; public final class WCFontPerfLogger extends WCFont { private static final PlatformLogger log = PlatformLogger.getLogger(WCFontPerfLogger.class.getName()); private static final PerfLogger logger = PerfLogger.getLogger(log); private final WCFont fnt; public WCFontPerfLogger(WCFont fnt) { this.fnt = fnt; } public synchronized static boolean isEnabled() { return logger.isEnabled(); } public static void log() { logger.log(); } public static void reset() { logger.reset(); } public Object getPlatformFont() { return fnt.getPlatformFont(); } public WCFont deriveFont(float size) { logger.resumeCount("DERIVEFONT"); WCFont res = fnt.deriveFont(size); logger.suspendCount("DERIVEFONT"); return res; } public int getOffsetForPosition(String str, float x) { logger.resumeCount("GETOFFSETFORPOSITION"); int res = fnt.getOffsetForPosition(str, x); logger.suspendCount("GETOFFSETFORPOSITION"); return res; } public WCGlyphBuffer getGlyphsAndAdvances(String str, int from, int to, boolean rtl) { logger.resumeCount("GETGLYPHSANDADVANCESFORCOMPLEXTEXT"); WCGlyphBuffer adv = fnt.getGlyphsAndAdvances(str, from, to, rtl); logger.suspendCount("GETGLYPHSANDADVANCESFORCOMPLEXTEXT"); return adv; } public int[] getGlyphCodes(char[] chars) { logger.resumeCount("GETGLYPHCODES"); int[] res = fnt.getGlyphCodes(chars); logger.suspendCount("GETGLYPHCODES"); return res; } public float getXHeight() { logger.resumeCount("GETXHEIGHT"); float res = fnt.getXHeight(); logger.suspendCount("GETXHEIGHT"); return res; } public double getGlyphWidth(int glyph) { logger.resumeCount("GETGLYPHWIDTH"); double res = fnt.getGlyphWidth(glyph); logger.suspendCount("GETGLYPHWIDTH"); return res; } public double getStringWidth(String str) { logger.resumeCount("GETSTRINGLENGTH"); double res = fnt.getStringWidth(str); logger.suspendCount("GETSTRINGLENGTH"); return res; } public double[] getStringBounds(String str, int from, int to, boolean rtl) { logger.resumeCount("GETSTRINGBOUNDS"); double[] res = fnt.getStringBounds(str, from, to, rtl); logger.suspendCount("GETSTRINGBOUNDS"); return res; } public int hashCode() { logger.resumeCount("HASH"); int res = fnt.hashCode(); logger.suspendCount("HASH"); return res; } public boolean equals(Object object) { logger.resumeCount("COMPARE"); boolean res = fnt.equals(object); logger.suspendCount("COMPARE"); return res; } public float getAscent() { logger.resumeCount("GETASCENT"); float res = fnt.getAscent(); logger.suspendCount("GETASCENT"); return res; } public float getDescent() { logger.resumeCount("GETDESCENT"); float res = fnt.getDescent(); logger.suspendCount("GETDESCENT"); return res; } public float getLineSpacing() { logger.resumeCount("GETLINESPACING"); float res = fnt.getLineSpacing(); logger.suspendCount("GETLINESPACING"); return res; } public float getLineGap() { logger.resumeCount("GETLINEGAP"); float res = fnt.getLineGap(); logger.suspendCount("GETLINEGAP"); return res; } public boolean hasUniformLineMetrics() { logger.resumeCount("HASUNIFORMLINEMETRICS"); boolean res = fnt.hasUniformLineMetrics(); logger.suspendCount("HASUNIFORMLINEMETRICS"); return res; } public float getCapHeight() { logger.resumeCount("GETCAPHEIGHT"); float res = fnt.getCapHeight(); logger.suspendCount("GETCAPHEIGHT"); return res; } }