blob: bf18626515af3fc36eb675ef6ee700f1683a7469 [file] [log] [blame]
/**
* Copyright 2010 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (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.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// Author: mdsteele@google.com (Matthew D. Steele)
#ifndef NET_INSTAWEB_REWRITER_PUBLIC_ELIDE_ATTRIBUTES_FILTER_H_
#define NET_INSTAWEB_REWRITER_PUBLIC_ELIDE_ATTRIBUTES_FILTER_H_
#include <map>
#include "base/basictypes.h"
#include "net/instaweb/htmlparse/public/empty_html_filter.h"
#include "net/instaweb/util/public/atom.h"
namespace net_instaweb {
// Remove attributes and attribute values that can be safely elided.
class ElideAttributesFilter : public EmptyHtmlFilter {
public:
explicit ElideAttributesFilter(HtmlParse* html_parse);
virtual void StartDocument();
virtual void Directive(HtmlDirectiveNode* directive);
virtual void StartElement(HtmlElement* element);
virtual const char* Name() const { return "ElideAttributes"; }
private:
typedef std::map<Atom, const char*, AtomCompare> AtomMap;
typedef std::map<Atom, AtomSet, AtomCompare> AtomSetMap;
typedef std::map<Atom, AtomMap, AtomCompare> AtomMapMap;
bool xhtml_mode_; // is this an XHTML document?
AtomSetMap one_value_attrs_map_; // tag/attrs with only one possible value
AtomMapMap default_value_map_; // tag/attrs with default values
DISALLOW_COPY_AND_ASSIGN(ElideAttributesFilter);
};
} // namespace net_instaweb
#endif // NET_INSTAWEB_REWRITER_PUBLIC_ELIDE_ATTRIBUTES_FILTER_H_