/* * Copyright (c) 2009 Mozilla Foundation * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. */ package nu.validator.htmlparser.impl; public class StateSnapshot implements TreeBuilderState { private final StackNode[] stack; private final StackNode[] listOfActiveFormattingElements; private final T formPointer; private final T headPointer; private final int mode; private final int originalMode; private final boolean framesetOk; private final int foreignFlag; private final boolean needToDropLF; private final boolean quirks; /** * @param stack * @param listOfActiveFormattingElements * @param formPointer * @param quirks * @param needToDropLF * @param foreignFlag * @param originalMode * @param mode */ StateSnapshot(StackNode[] stack, StackNode[] listOfActiveFormattingElements, T formPointer, T headPointer, int mode, int originalMode, boolean framesetOk, int foreignFlag, boolean needToDropLF, boolean quirks) { this.stack = stack; this.listOfActiveFormattingElements = listOfActiveFormattingElements; this.formPointer = formPointer; this.headPointer = headPointer; this.mode = mode; this.originalMode = originalMode; this.framesetOk = framesetOk; this.foreignFlag = foreignFlag; this.needToDropLF = needToDropLF; this.quirks = quirks; } /** * @see nu.validator.htmlparser.impl.TreeBuilderState#getStack() */ public StackNode[] getStack() { return stack; } /** * @see nu.validator.htmlparser.impl.TreeBuilderState#getListOfActiveFormattingElements() */ public StackNode[] getListOfActiveFormattingElements() { return listOfActiveFormattingElements; } /** * @see nu.validator.htmlparser.impl.TreeBuilderState#getFormPointer() */ public T getFormPointer() { return formPointer; } /** * Returns the headPointer. * * @return the headPointer */ public T getHeadPointer() { return headPointer; } /** * Returns the mode. * * @return the mode */ public int getMode() { return mode; } /** * Returns the originalMode. * * @return the originalMode */ public int getOriginalMode() { return originalMode; } /** * Returns the framesetOk. * * @return the framesetOk */ public boolean isFramesetOk() { return framesetOk; } /** * Returns the foreignFlag. * * @return the foreignFlag */ public int getForeignFlag() { return foreignFlag; } /** * Returns the needToDropLF. * * @return the needToDropLF */ public boolean isNeedToDropLF() { return needToDropLF; } /** * Returns the quirks. * * @return the quirks */ public boolean isQuirks() { return quirks; } /** * @see nu.validator.htmlparser.impl.TreeBuilderState#getListLength() */ public int getListLength() { return listOfActiveFormattingElements.length; } /** * @see nu.validator.htmlparser.impl.TreeBuilderState#getStackLength() */ public int getStackLength() { return stack.length; } @SuppressWarnings("unused") private void destructor() { for (int i = 0; i < stack.length; i++) { stack[i].release(); } Portability.releaseArray(stack); for (int i = 0; i < listOfActiveFormattingElements.length; i++) { if (listOfActiveFormattingElements[i] != null) { listOfActiveFormattingElements[i].release(); } } Portability.releaseArray(listOfActiveFormattingElements); Portability.retainElement(formPointer); } }