/* * Copyright (C) 2006, 2007, 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. * Copyright (C) 2010, 2011, 2012 Google Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Library General Public * License as published by the Free Software Foundation; either * version 2 of the License, or (at your option) any later version. * * This library 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 * Library General Public License for more details. * * You should have received a copy of the GNU Library General Public License * along with this library; see the file COPYING.LIB. If not, write to * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. * */ #ifndef FormController_h #define FormController_h #include "CheckedRadioButtons.h" #include #include #include #include namespace WebCore { class FormAssociatedElement; class FormKeyGenerator; class HTMLFormControlElementWithState; class HTMLFormElement; class SavedFormState; class FormControlState { public: FormControlState() : m_type(TypeSkip) { } explicit FormControlState(const String& value) : m_type(TypeRestore) { m_values.append(value); } static FormControlState deserialize(const Vector& stateVector, size_t& index); FormControlState(const FormControlState& another) : m_type(another.m_type), m_values(another.m_values) { } FormControlState& operator=(const FormControlState&); bool isFailure() const { return m_type == TypeFailure; } size_t valueSize() const { return m_values.size(); } const String& operator[](size_t i) const { return m_values[i]; } void append(const String&); void serializeTo(Vector& stateVector) const; private: enum Type { TypeSkip, TypeRestore, TypeFailure }; explicit FormControlState(Type type) : m_type(type) { } Type m_type; Vector m_values; }; inline FormControlState& FormControlState::operator=(const FormControlState& another) { m_type = another.m_type; m_values = another.m_values; return *this; } inline void FormControlState::append(const String& value) { m_type = TypeRestore; m_values.append(value); } class FormController { WTF_MAKE_FAST_ALLOCATED; public: FormController(); ~FormController(); CheckedRadioButtons& checkedRadioButtons() { return m_checkedRadioButtons; } void registerFormElementWithState(HTMLFormControlElementWithState*); void unregisterFormElementWithState(HTMLFormControlElementWithState*); unsigned formElementsCharacterCount() const; // This should be callled only by Document::formElementsState(). Vector formElementsState() const; // This should be callled only by Document::setStateForNewFormElements(). void setStateForNewFormElements(const Vector&); void willDeleteForm(HTMLFormElement*); void restoreControlStateFor(HTMLFormControlElementWithState&); void restoreControlStateIn(HTMLFormElement&); WEBCORE_EXPORT static Vector getReferencedFilePaths(const Vector& stateVector); private: typedef ListHashSet> FormElementListHashSet; typedef HashMap, std::unique_ptr> SavedFormStateMap; static std::unique_ptr createSavedFormStateMap(const FormElementListHashSet&); FormControlState takeStateForFormElement(const HTMLFormControlElementWithState&); static void formStatesFromStateVector(const Vector&, SavedFormStateMap&); CheckedRadioButtons m_checkedRadioButtons; FormElementListHashSet m_formElementsWithState; SavedFormStateMap m_savedFormStateMap; std::unique_ptr m_formKeyGenerator; }; } // namespace WebCore #endif