diff options
Diffstat (limited to 'udm')
-rw-r--r-- | udm/inc/udm/html/htmlitem.hxx | 359 | ||||
-rw-r--r-- | udm/inc/udm/xml/xmlitem.hxx | 348 | ||||
-rw-r--r-- | udm/prj/build.lst | 12 | ||||
-rw-r--r-- | udm/prj/d.lst | 9 | ||||
-rw-r--r-- | udm/source/html/htmlitem.cxx | 203 | ||||
-rw-r--r-- | udm/source/html/makefile.mk | 56 | ||||
-rw-r--r-- | udm/source/inc/precomp.h | 69 | ||||
-rw-r--r-- | udm/source/mkinc/fullcpp.mk | 63 | ||||
-rw-r--r-- | udm/source/xml/makefile.mk | 56 | ||||
-rw-r--r-- | udm/source/xml/xmlitem.cxx | 546 | ||||
-rw-r--r-- | udm/util/makefile.mk | 54 |
11 files changed, 1775 insertions, 0 deletions
diff --git a/udm/inc/udm/html/htmlitem.hxx b/udm/inc/udm/html/htmlitem.hxx new file mode 100644 index 000000000000..27549d74450a --- /dev/null +++ b/udm/inc/udm/html/htmlitem.hxx @@ -0,0 +1,359 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org 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 Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#ifndef CSI_HTML_HTMLITEM_HXX +#define CSI_HTML_HTMLITEM_HXX + +// USED SERVICES + // BASE CLASSES +#include <udm/xml/xmlitem.hxx> + // COMPONENTS + // PARAMETERS + + +namespace csi +{ +namespace html +{ + +/** <BODY> +*/ +class Body : public csi::xml::AnElement +{ + public: + Body() + : csi::xml::AnElement( "body" ) {} + private: + virtual bool LineBreakAfterBeginTag() const; +}; + +/** <BR> +*/ +class HorizontalLine : public xml::XmlCode +{ + public: + HorizontalLine() + : xml::XmlCode("<hr>\n") {} +}; + +/** <A name=""> +*/ +class Label : public csi::xml::AnElement +{ + public: + Label( + const ::csv::String & i_sLabel ) + : csi::xml::AnElement("a") + { *this << new csi::xml::AnAttribute(String("name"), i_sLabel); } +}; + +/** <p> +*/ +class Paragraph : public csi::xml::AnElement +{ + public: + Paragraph() + : csi::xml::AnElement("p") {} + private: + virtual bool LineBreakAfterEndTag() const; +}; + +/** <H1-6> +*/ +class Headline : public csi::xml::APureElement +{ + public: + Headline( + int i_nNr ) + : csi::xml::APureElement(sTags[i_nNr-1]) { csv_assert(1 <= i_nNr AND i_nNr < 7); } + private: + static const char * sTags[6]; + virtual bool LineBreakAfterEndTag() const; +}; + +/** <BR> +*/ +class LineBreak : public xml::XmlCode +{ + public: + LineBreak() + : xml::XmlCode("<br>\n") {} +}; + +/** <b> +*/ +class Bold : public csi::xml::APureElement +{ + public: + Bold() + : csi::xml::APureElement("b") {} +}; + +/** <i> +*/ +class Italic : public csi::xml::APureElement +{ + public: + Italic() + : csi::xml::APureElement("i") {} +}; + +/** <strong> +*/ +class Strong : public csi::xml::APureElement +{ + public: + Strong() + : csi::xml::APureElement("strong") {} +}; + +/** <em> +*/ +class Emphasized : public csi::xml::APureElement +{ + public: + Emphasized() + : csi::xml::APureElement("em") {} +}; + +/** <font> +*/ +class Font : public csi::xml::AnElement +{ + public: + Font() + : csi::xml::AnElement("font") {} +}; + + +/** <A href=""> +*/ +class Link : public csi::xml::AnElement +{ + public: + Link( + const ::csv::String &i_sDestinaton ) + : csi::xml::AnElement("a") + { *this << new csi::xml::AnAttribute(String("href"), i_sDestinaton); } +}; + +class TableCell : public csi::xml::AnElement +{ + public: + TableCell() + : csi::xml::AnElement("td") {} + private: + virtual bool LineBreakAfterEndTag() const; +}; + +class TableRow : public csi::xml::AnElement +{ + public: + TableRow() + : csi::xml::AnElement("tr") {} + + TableCell & AddCell( + DYN csi::xml::Item* let_dpItem = 0 ); + private: + virtual bool LineBreakAfterBeginTag() const; +}; + +/** <table ....> +*/ +class Table : public csi::xml::AnElement +{ + public: + Table() + : csi::xml::AnElement("table") {} + Table( + const ::csv::String & i_sBorder, + const ::csv::String & i_sWidth, + const ::csv::String & i_sCellPadding, + const ::csv::String & i_sCellSpacing ); + TableRow & AddRow(); + private: + virtual bool FinishEmptyTag_XmlStyle() const; + virtual bool LineBreakAfterBeginTag() const; +}; + + + +class DefListTerm : public csi::xml::AnElement +{ + public: + DefListTerm() + : csi::xml::AnElement("dt") {} + private: + virtual bool LineBreakAfterEndTag() const; +}; + +class DefListDefinition : public csi::xml::AnElement +{ + public: + DefListDefinition() + : csi::xml::AnElement("dd") {} + private: + virtual bool LineBreakAfterEndTag() const; +}; + +/** <DL> +*/ +class DefList : public csi::xml::AnElement +{ + public: + DefList() + : csi::xml::AnElement("dl") {} + + DefListTerm & AddTerm( + DYN csi::xml::Item* let_dpItem = 0 ); + DefListDefinition & AddDefinition( + DYN csi::xml::Item* let_dpItem = 0 ); + private: + virtual bool LineBreakAfterBeginTag() const; + virtual bool FinishEmptyTag_XmlStyle() const; +}; + + +class ListItem : public csi::xml::AnElement +{ + public: + ListItem() + : csi::xml::AnElement("li") {} + private: + virtual bool LineBreakAfterEndTag() const; +}; + +/** <OL> +*/ +class NumeratedList : public csi::xml::AnElement +{ + public: + NumeratedList() + : csi::xml::AnElement("ol") {} + private: + virtual bool LineBreakAfterBeginTag() const; +}; + +/** <UL> +*/ +class SimpleList : public csi::xml::AnElement +{ + public: + SimpleList() + : csi::xml::AnElement("ul") {} + + ListItem & AddItem( + DYN csi::xml::Item* let_dpItem = 0 ); + private: + virtual bool LineBreakAfterBeginTag() const; +}; + + +class ClassAttr : public csi::xml::AnAttribute +{ + public: + ClassAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("class"), i_sValue ) {} +}; + +class StyleAttr : public csi::xml::AnAttribute +{ + public: + StyleAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("style"), i_sValue ) {} +}; + +class SizeAttr : public csi::xml::AnAttribute +{ + public: + SizeAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("size"), i_sValue ) {} +}; + +class ColorAttr : public csi::xml::AnAttribute +{ + public: + ColorAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("color"), i_sValue ) {} +}; + +class BgColorAttr : public csi::xml::AnAttribute +{ + public: + BgColorAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("bgcolor"), i_sValue ) {} +}; + +class AlignAttr : public csi::xml::AnAttribute +{ + public: + AlignAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("align"), i_sValue ) {} +}; + +class VAlignAttr : public csi::xml::AnAttribute +{ + public: + VAlignAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("valign"), i_sValue ) {} +}; + +class WidthAttr : public csi::xml::AnAttribute +{ + public: + WidthAttr( + const ::csv::String & i_sValue ) + : csi::xml::AnAttribute( String("width"), i_sValue ) {} +}; + + + +class Sbr : public csi::xml::XmlCode // Sourcefile lineBreak +{ + public: + Sbr() + : csi::xml::XmlCode("\n") {} +}; + + +} // namespace html +} // namespace csi + +namespace Html = csi::html; + +#endif + + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udm/inc/udm/xml/xmlitem.hxx b/udm/inc/udm/xml/xmlitem.hxx new file mode 100644 index 000000000000..89f2c46e6041 --- /dev/null +++ b/udm/inc/udm/xml/xmlitem.hxx @@ -0,0 +1,348 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org 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 Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#ifndef CSI_XML_XMLITEM_HXX +#define CSI_XML_XMLITEM_HXX + +// USED SERVICES + // BASE CLASSES + // COMPONENTS +#include <cosv/tpl/swelist.hxx> +#include <cosv/tpl/dyn.hxx> + // PARAMETERS + +namespace csv +{ + class bostream; +} + + +namespace csi +{ +namespace xml +{ + + +/* Basics: + Item, Attribute, Element, TextContext +*/ + +class Item +{ + public: + virtual ~Item() {} + void WriteOut( + csv::bostream & io_aFile ) const; + private: + virtual void do_WriteOut( + csv::bostream & io_aFile ) const = 0; +}; + +typedef csv::SweList_dyn< Item > ItemList; + +class Attribute +{ + public: + virtual ~Attribute() {} + + void WriteOut( + csv::bostream & io_aFile ) const; + + const ::csv::String& Name() const; + const ::csv::String& Value() const; + + private: + virtual const ::csv::String & + inq_Name() const = 0; + virtual const ::csv::String & + inq_Value() const = 0; +}; + +typedef csv::SweList_dyn< Attribute > AttrList; + + +class Element : public Item +{ + public: + Element & operator<<( /// For multiple content items. + DYN Item * let_dpItem ); + Element & operator<<( /// For multiple content items. + const ::csv::String& let_drText ); + Element & operator<<( /// For multiple content items. + const char * let_dpText ); + Element & operator<<( + DYN Attribute * let_dpAttr ); + + Element & operator>>( /// For multiple content items. @return the child Element. + DYN Element & let_drElement ); + + + Item * SetContent( /// For only one content item. + DYN Item * let_dpItem ); /// Replaces previous content. May be 0, then all content is deleted. + private: + // Interface Item: + virtual void do_WriteOut( + csv::bostream & io_aFile ) const; + // Local + virtual void op_streamout( + DYN Item * let_dpItem ) = 0; + virtual void op_streamout( + DYN Attribute * let_dpAttr ) = 0; + + virtual void do_SetContent( + DYN Item * let_dpItem ) = 0; + // Helpers + virtual const ::csv::String & + inq_TagName() const = 0; + virtual const Item * + inq_Content() const = 0; + virtual const AttrList * + inq_Attrs() const = 0; + + virtual bool FinishEmptyTag_XmlStyle() const; /// Defaulted to: true + + virtual bool LineBreakAfterBeginTag() const; /// Defaulted to: false + virtual bool LineBreakAfterEndTag() const; /// Defaulted to: true, if LineBreakAfterBeginTag() +}; + +class TextContent : public Item +{ +}; + + +/* Implementation simplifiers: + EmptyElement, PureElement, SglTag +*/ + +class EmptyElement : public Element +{ + private: + // Interface Element: + virtual void op_streamout( /// does nothing + DYN Item * let_dpItem ); + virtual void op_streamout( + DYN Attribute * let_dpAttr ); + virtual void do_SetContent( /// does nothing + DYN Item * let_dpItem ); + virtual const Item * + inq_Content() const; /// @return 0 + virtual const AttrList * + inq_Attrs() const; + + // Local + virtual AttrList & inq_RefAttrs() = 0; +}; + +class PureElement : public Element +{ + private: + // Interface Element: + virtual void op_streamout( + DYN Item * let_dpItem ); + virtual void op_streamout( /// does nothing + DYN Attribute * let_dpAttr ); + virtual void do_SetContent( + DYN Item * let_dpItem ); + virtual const Item * + inq_Content() const; + virtual const AttrList * + inq_Attrs() const; /// @return 0 + // Local + virtual Dyn< Item > & + inq_RefContent() = 0; +}; + +class SglTag : public Element +{ + private: + // Interface Element: + virtual void op_streamout( /// does nothing + DYN Item * let_dpItem ); + virtual void op_streamout( /// does nothing + DYN Attribute * let_dpAttr ); + virtual void do_SetContent( /// does nothing + DYN Item * let_dpItem ); + virtual const Item * + inq_Content() const; /// @return 0 + virtual const AttrList * + inq_Attrs() const; /// @return 0 +}; + + + +/* Standard Element implementations, if there are not any + specialized ones. +*/ + +class AnElement : public Element +{ + public: + AnElement( + const char * i_sTagName ); + ~AnElement(); + private: + // Interface Element + virtual void op_streamout( + DYN Item * let_dpItem ); + virtual void op_streamout( + DYN Attribute * let_dpAttr ); + virtual void do_SetContent( + DYN Item * let_dpItem ); + virtual const ::csv::String & + inq_TagName() const; + virtual const Item * + inq_Content() const; + virtual const AttrList * + inq_Attrs() const; + // DATA + ::csv::String sTagName; + Dyn< Item > pContent; + AttrList aAttrs; +}; + +class APureElement : public PureElement +{ + public: + APureElement( + const char * i_sTagName ); + ~APureElement(); + private: + // Interface Element: + virtual const ::csv::String & + inq_TagName() const; + // Interface PureElement: + virtual Dyn< Item > & + inq_RefContent(); + // DATA + ::csv::String sTagName; + Dyn< Item > pContent; +}; + +/* Standard Attribute implementation +*/ +class AnAttribute : public Attribute +{ + public: + AnAttribute( + const ::csv::String & i_sName, + const ::csv::String & i_sValue ); + AnAttribute( + const char * i_sName, + const char * i_sValue ); + ~AnAttribute(); + private: + // Interface Attribute: + virtual const ::csv::String & + inq_Name() const; + virtual const ::csv::String & + inq_Value() const; + // DATA + ::csv::String sName; + ::csv::String sValue; +}; + + + +/* Implementations of TextContent: + + Text ( reserved characters will be replaced and appear unchanged ) + XmlCode ( reserved characters stay and are interpreted + by the XML-viewer ) +*/ +class Text : public TextContent +{ + public: + Text( + const ::csv::String & i_sText ); + Text( + const char * i_sText ); + ~Text(); + private: + virtual void do_WriteOut( + csv::bostream & io_aFile ) const; + // DATA + ::csv::String sText; +}; + + +class XmlCode : public TextContent +{ + public: + XmlCode( + const ::csv::String & i_sText ); + XmlCode( + const char * i_sText ); + ~XmlCode(); + private: + virtual void do_WriteOut( + csv::bostream & io_aFile ) const; + // DATA + ::csv::String sText; +}; + + + +// IMPLEMENTATION + +inline void +Item::WriteOut( csv::bostream & io_aFile ) const + { do_WriteOut(io_aFile); } + +inline const ::csv::String & +Attribute::Name() const + { return inq_Name(); } +inline const ::csv::String & +Attribute::Value() const + { return inq_Value(); } + +inline Element & +Element::operator<<( DYN Item * let_dpItem ) + { op_streamout(let_dpItem); return *this; } +inline Element & +Element::operator<<( const ::csv::String & let_drText ) + { op_streamout( new Text(let_drText) ); return *this; } +inline Element & +Element::operator<<( const char * let_drText ) + { op_streamout( new Text(let_drText) ); return *this; } +inline Element & +Element::operator<<( DYN Attribute * let_dpAttr ) + { op_streamout(let_dpAttr); return *this; } +inline Element & +Element::operator>>( DYN Element & let_drElement ) + { op_streamout(&let_drElement); return let_drElement; } +inline Item * +Element::SetContent( DYN Item * let_dpItem ) + { do_SetContent(let_dpItem); return let_dpItem; } + + +} // namespace xml +} // namespace csi + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udm/prj/build.lst b/udm/prj/build.lst new file mode 100644 index 000000000000..9ff891b861fd --- /dev/null +++ b/udm/prj/build.lst @@ -0,0 +1,12 @@ +ud udm : cosv NULL +ud udm usr1 - all ud_mkout NULL +ud udm\prj get - all ud_prj NULL +ud udm\inc get - all ud_inc NULL +ud udm\inc\udm get - all udi_udm NULL +ud udm\inc\udm\html get - all udiu_html NULL +ud udm\inc\udm\xml get - all udiu_xml NULL +ud udm\source get - all ud_src NULL +ud udm\source\html nmake - all uds_html NULL +ud udm\source\xml nmake - all uds_xml NULL +ud udm\util nmake - all ud_util uds_xml uds_html NULL +#================================================================================ diff --git a/udm/prj/d.lst b/udm/prj/d.lst new file mode 100644 index 000000000000..5dfe7a130727 --- /dev/null +++ b/udm/prj/d.lst @@ -0,0 +1,9 @@ +mkdir: %_DEST%\inc\udm +mkdir: %_DEST%\inc\udm\html +mkdir: %_DEST%\inc\udm\xml + +..\%__SRC%\lib\udm.lib %_DEST%\lib\udm.lib +..\%__SRC%\lib\libudm.a %_DEST%\lib\libudm.a +..\inc\udm\html\*.hxx %_DEST%\inc\udm\html\*.hxx +..\inc\udm\xml\*.hxx %_DEST%\inc\udm\xml\*.hxx + diff --git a/udm/source/html/htmlitem.cxx b/udm/source/html/htmlitem.cxx new file mode 100644 index 000000000000..ab8bdd781006 --- /dev/null +++ b/udm/source/html/htmlitem.cxx @@ -0,0 +1,203 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org 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 Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#include <precomp.h> +#include <udm/html/htmlitem.hxx> + +// NOT FULLY DECLARED SERVICES + + +namespace csi +{ +namespace html +{ + +using namespace csi::xml; + +template <class ELEM> +inline ELEM & +PushElem( Element & i_rMain, + DYN ELEM * let_dpSub, + DYN Item * let_dpItem ) +{ + i_rMain << let_dpSub; + if ( let_dpItem != 0 ) + *let_dpSub << let_dpItem; + return *let_dpSub; +} + + +bool +Body::LineBreakAfterBeginTag() const +{ + return true; +} + +bool +Paragraph::LineBreakAfterEndTag() const +{ + return true; +} + +const char * +Headline::sTags[6] = { "h1", "h2", "h3", "h4", "h5", "h6" }; + +bool +Headline::LineBreakAfterEndTag() const +{ + return true; +} + +bool +TableCell::LineBreakAfterEndTag() const +{ + return true; +} + +TableCell & +TableRow::AddCell( DYN Item * let_dpItem ) +{ + return PushElem( *this, new TableCell, let_dpItem ); +} + +bool +TableRow::LineBreakAfterBeginTag() const +{ + return true; +} + + +Table::Table( const String & i_sBorder, + const String & i_sWidth, + const String & i_sCellPadding, + const String & i_sCellSpacing ) + : csi::xml::AnElement("table") +{ + if ( i_sBorder.length() > 0 ) + *this << new AnAttribute(String("border"),i_sBorder); + if ( i_sBorder.length() > 0 ) + *this << new AnAttribute(String("width"),i_sWidth); + if ( i_sBorder.length() > 0 ) + *this << new AnAttribute(String("cellpadding"),i_sCellPadding); + if ( i_sBorder.length() > 0 ) + *this << new AnAttribute(String("cellspacing"),i_sCellSpacing); +} + +TableRow & +Table::AddRow() +{ + TableRow * ret = new TableRow; + *this << ret; + return *ret; +} + +bool +Table::FinishEmptyTag_XmlStyle() const +{ + return false; +} + +bool +Table::LineBreakAfterBeginTag() const +{ + return true; +} + + + +bool +DefListTerm::LineBreakAfterEndTag() const +{ + return true; +} + +bool +DefListDefinition::LineBreakAfterEndTag() const +{ + return true; +} + + + + + +DefListTerm & +DefList::AddTerm( DYN csi::xml::Item* let_dpItem ) +{ + return PushElem( *this, new DefListTerm, let_dpItem ); +} + +DefListDefinition & +DefList::AddDefinition( DYN csi::xml::Item* let_dpItem ) +{ + return PushElem( *this, new DefListDefinition, let_dpItem ); +} + +bool +DefList::LineBreakAfterBeginTag() const +{ + return true; +} + +bool +DefList::FinishEmptyTag_XmlStyle() const +{ + return false; +} + +bool +ListItem::LineBreakAfterEndTag() const +{ + return true; +} + +bool +NumeratedList::LineBreakAfterBeginTag() const +{ + return true; +} + + +ListItem & +SimpleList::AddItem( DYN csi::xml::Item* let_dpItem ) +{ + return PushElem( *this, new ListItem, let_dpItem ); +} + +bool +SimpleList::LineBreakAfterBeginTag() const +{ + return true; +} + + + +} // namespace html +} // namespace csi + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udm/source/html/makefile.mk b/udm/source/html/makefile.mk new file mode 100644 index 000000000000..73eba36da9a3 --- /dev/null +++ b/udm/source/html/makefile.mk @@ -0,0 +1,56 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org 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 Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +PRJ=..$/.. + +PRJNAME=udm +TARGET=csi_html + + +# --- Settings ----------------------------------------------------- + +ENABLE_EXCEPTIONS=true + + +.INCLUDE : settings.mk +.INCLUDE : $(PRJ)$/source$/mkinc$/fullcpp.mk + + +# --- Files -------------------------------------------------------- + +OBJFILES= \ + $(OBJ)$/htmlitem.obj + + + + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk + + + diff --git a/udm/source/inc/precomp.h b/udm/source/inc/precomp.h new file mode 100644 index 000000000000..707e06869084 --- /dev/null +++ b/udm/source/inc/precomp.h @@ -0,0 +1,69 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org 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 Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ +#ifndef UDM_PRECOMP_H +#define UDM_PRECOMP_H + +// For en/disabling csv_assertions: +#ifndef DEBUG +#define CSV_NO_ASSERTIONS +#endif + + +#include <cosv/csv_precomp.h> +#include <vector> +#include <map> + + + +// Shortcuts to access csv::-types: +using csv::String; +using csv::StringVector; +using csv::StreamStr; +using csv::c_str; +typedef csv::StreamStrLock StreamLock; + + + +inline std::ostream & +Cout() { return std::cout; } + +inline std::ostream & +Cerr() { return std::cerr; } + + +inline csv::F_FLUSHING_FUNC +Endl() { return csv::Endl; } +inline csv::F_FLUSHING_FUNC +Flush() { return csv::Flush; } + + + + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udm/source/mkinc/fullcpp.mk b/udm/source/mkinc/fullcpp.mk new file mode 100644 index 000000000000..5faca9c6cbf4 --- /dev/null +++ b/udm/source/mkinc/fullcpp.mk @@ -0,0 +1,63 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org 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 Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + + + +# --- Settings ----------------------------------------------------- +# Has to be included AFTER settings.mk ! + + +# Precompiled header: + + +.IF "$(GUI)"=="WNT" + +# RTTI +.IF "$(COM)"=="MSC" +CFLAGS+= -GR +.ENDIF + +.IF "$(NP_LOCALBUILD)"!="" + + +# Precompiled Headers +PCH_NAME= udm +.IF "$(DBG_LEVEL)"<"2" +CFLAGS+= -YX"precomp.h" /Fp$(PRJ)$/$(INPATH)$/misc$/$(PCH_NAME).pch +.ELSE +CFLAGS+= -YX"precomp.h" /Fp$(PRJ)$/$(INPATH)$/misc$/$(PCH_NAME).pcd -DNP_LOCALBUILD +.ENDIF + +.ENDIF + +.ENDIF + +# Or should we simple check for $(COM)==GCC ? +.IF "$(OS)"=="LINUX" || "$(OS)"=="FREEBSD" || "$(OS)"=="NETBSD" || "$(OS)$(COM)"=="WNTGCC" +CFLAGSCXX+= -frtti +.ENDIF + diff --git a/udm/source/xml/makefile.mk b/udm/source/xml/makefile.mk new file mode 100644 index 000000000000..a90d71be0649 --- /dev/null +++ b/udm/source/xml/makefile.mk @@ -0,0 +1,56 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org 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 Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +PRJ=..$/.. + +PRJNAME=udm +TARGET=csi_xml + + +# --- Settings ----------------------------------------------------- + +ENABLE_EXCEPTIONS=true + + +.INCLUDE : settings.mk +.INCLUDE : $(PRJ)$/source$/mkinc$/fullcpp.mk + + +# --- Files -------------------------------------------------------- + +OBJFILES= \ + $(OBJ)$/xmlitem.obj + + + + +# --- Targets ------------------------------------------------------ + +.INCLUDE : target.mk + + + diff --git a/udm/source/xml/xmlitem.cxx b/udm/source/xml/xmlitem.cxx new file mode 100644 index 000000000000..d613b84e4348 --- /dev/null +++ b/udm/source/xml/xmlitem.cxx @@ -0,0 +1,546 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/************************************************************************* + * + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. + * + * Copyright 2000, 2010 Oracle and/or its affiliates. + * + * OpenOffice.org - a multi-platform office productivity suite + * + * This file is part of OpenOffice.org. + * + * OpenOffice.org is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License version 3 + * only, as published by the Free Software Foundation. + * + * OpenOffice.org 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 Lesser General Public License version 3 for more details + * (a copy is included in the LICENSE file that accompanied this code). + * + * You should have received a copy of the GNU Lesser General Public License + * version 3 along with OpenOffice.org. If not, see + * <http://www.openoffice.org/license.html> + * for a copy of the LGPLv3 License. + * + ************************************************************************/ + +#include <precomp.h> +#include <udm/xml/xmlitem.hxx> + +// NOT FULLY DECLARED SERVICES +#include <cosv/file.hxx> + + +namespace csi +{ +namespace xml +{ + +char cReplacable[256] = + { + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 0 - 49 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, // ", & + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 50 - 99 + 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, // <, > + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, // 100 - 149 + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + + 0, 0, 0, 0, 0, 1 // + }; + + +class MultiItem : public Item +{ + public: + MultiItem(); + ~MultiItem(); + + void Add( + DYN Item * let_dpDatum ) + { csv_assert( let_dpDatum != 0 ); + aItems.push_back(let_dpDatum); } + void Erase() { aItems.erase_all(); } + + private: + virtual void do_WriteOut( + csv::bostream & io_aFile ) const; + // DATA + ItemList aItems; +}; + + +void StreamOut( + Dyn< Item > & o_rContent, + DYN Item * let_dpItem ); +inline void +StreamOut( AttrList & o_rAttrs, + DYN Attribute * let_dpAttr ) +{ + csv_assert( let_dpAttr != 0 ); + o_rAttrs.push_back( let_dpAttr ); +} + + +inline void +Impl_SetContent( Dyn< Item > & o_rContent, + DYN Item * let_dpItem ) +{ + o_rContent = let_dpItem; +} + + +//********************* Attribute ****************************// + +const String attrValueBegin("=\""); +const String attrValueEnd("\""); + +void +Attribute::WriteOut( csv::bostream & io_aFile ) const +{ + io_aFile.write( Name() ); + if ( Value().length() > 0 ) + { + io_aFile.write( attrValueBegin ); + io_aFile.write( Value() ); + io_aFile.write( attrValueEnd ); + } +} + + + +//************************ Element ****************************// + +const String newline("\n"); +const String space(" "); +const String beginTagBegin("<"); +const String endTagBegin("</"); +const String tagEnd(">"); +const String emptyTagEnd("/>"); + +void +Element::do_WriteOut( csv::bostream & io_aFile ) const +{ + io_aFile.write( beginTagBegin ); + io_aFile.write( inq_TagName() ); + + const AttrList * pAttrs = inq_Attrs(); + if ( pAttrs != 0 ) + { + for ( AttrList::iterator it = pAttrs->begin(); + it != pAttrs->end(); + ++it ) + { + + io_aFile.write( space ); + (*it)->WriteOut( io_aFile ); + } + } + + const Item * pContent = inq_Content(); + if ( pContent != 0 ) + io_aFile.write( tagEnd ); + else + { + if (FinishEmptyTag_XmlStyle()) + io_aFile.write( emptyTagEnd ); + else + { + io_aFile.write( tagEnd ); + io_aFile.write( endTagBegin ); + io_aFile.write( inq_TagName() ); + io_aFile.write( tagEnd ); + } + } + if ( LineBreakAfterBeginTag() ) + io_aFile.write( newline ); + if ( pContent == 0 ) + return; + + pContent->WriteOut( io_aFile ); + io_aFile.write( endTagBegin ); + io_aFile.write( inq_TagName() ); + io_aFile.write( tagEnd ); + if ( LineBreakAfterEndTag() ) + io_aFile.write( newline ); +} + +bool +Element::FinishEmptyTag_XmlStyle() const +{ + return true; +} + +bool +Element::LineBreakAfterBeginTag() const +{ + return false; +} + +bool +Element::LineBreakAfterEndTag() const +{ + return LineBreakAfterBeginTag(); +} + + +//************************ EmptyElement ****************************// + +void +EmptyElement::op_streamout( DYN Item * ) +{ + // Does nothing. +} + +void +EmptyElement::op_streamout( DYN Attribute * let_dpAttr ) +{ + StreamOut( inq_RefAttrs(), let_dpAttr ); +} + +void +EmptyElement::do_SetContent( DYN Item * ) +{ + // Does nothing. +} + +const Item * +EmptyElement::inq_Content() const +{ + return 0; +} + +const AttrList * +EmptyElement::inq_Attrs() const +{ + return & const_cast< EmptyElement* >(this)->inq_RefAttrs(); +} + + +//************************ PureElement ****************************// + +void +PureElement::op_streamout( DYN Item * let_dpItem ) +{ + StreamOut( inq_RefContent(), let_dpItem ); +} + +void +PureElement::op_streamout( DYN Attribute * ) +{ + // Does nothing. +} + +void +PureElement::do_SetContent( DYN Item * let_dpItem ) +{ + Impl_SetContent( inq_RefContent(), let_dpItem ); +} + +const Item * +PureElement::inq_Content() const +{ + return const_cast< PureElement* >(this)->inq_RefContent().Ptr(); +} + +const AttrList * +PureElement::inq_Attrs() const +{ + return 0; +} + + +//*************************** SglTag **************************// + +void +SglTag::op_streamout( DYN Item * ) +{ + // Does nothing. +} + +void +SglTag::op_streamout( DYN Attribute * ) +{ + // Does nothing. +} + +void +SglTag::do_SetContent( DYN Item *) +{ + // Does nothing. +} + +const Item * +SglTag::inq_Content() const +{ + return 0; +} + +const AttrList * +SglTag::inq_Attrs() const +{ + return 0; +} + + +//*************************** AnElement **************************// + +AnElement::AnElement( const char * i_sTagName ) + : sTagName( i_sTagName ) + // pContent, + // aAttrs +{ +} + +AnElement::~AnElement() +{ +} + +void +AnElement::op_streamout( DYN Item * let_dpItem ) +{ + StreamOut( pContent, let_dpItem ); +} + +void +AnElement::op_streamout( DYN Attribute * let_dpAttr ) +{ + StreamOut( aAttrs, let_dpAttr ); +} + +void +AnElement::do_SetContent( DYN Item * let_dpItem ) +{ + Impl_SetContent( pContent, let_dpItem ); +} + +const String & +AnElement::inq_TagName() const +{ + return sTagName; +} + +const Item * +AnElement::inq_Content() const +{ + return pContent.Ptr(); +} + +const AttrList * +AnElement::inq_Attrs() const +{ + return &aAttrs; +} + +//*************************** APureElement **************************// + +APureElement::APureElement( const char * i_sTagName ) + : sTagName( i_sTagName ) + // pContent +{ +} + +APureElement::~APureElement() +{ +} + +const String & +APureElement::inq_TagName() const +{ + return sTagName; +} + +Dyn< Item > & +APureElement::inq_RefContent() +{ + return pContent; +} + +//*************************** AnAttribute **************************// +AnAttribute::AnAttribute( const String & i_sName, + const String & i_sValue ) + : sName(i_sName), + sValue(i_sValue) +{ +} + +AnAttribute::AnAttribute( const char * i_sName, + const char * i_sValue ) + : sName(i_sName), + sValue(i_sValue) +{ +} + +AnAttribute::~AnAttribute() +{ +} + +const String & +AnAttribute::inq_Name() const +{ + return sName; +} + +const String & +AnAttribute::inq_Value() const +{ + return sValue; +} + + + +//*************************** Text **************************// + +Text::Text( const String & i_sText ) + : sText(i_sText) +{ +} + +Text::Text( const char * i_sText ) + : sText(i_sText) +{ +} + +Text::~Text() +{ +} + +void +Text::do_WriteOut( csv::bostream & io_aFile ) const +{ + const unsigned char * + pStart = reinterpret_cast< const unsigned char* >(sText.c_str()); + const unsigned char * + pOut = pStart; + + for ( ; *pOut != '\0'; ++pOut ) + { + if ( cReplacable[*pOut] ) + { + if ( pOut != pStart ) + { + io_aFile.write( pStart, pOut-pStart ); + } + + switch (*pOut) + { + case '<': io_aFile.write("<"); break; + case '>': io_aFile.write(">"); break; + case '"': io_aFile.write("""); break; + case '&': io_aFile.write("&"); break; + case 255: io_aFile.write(" "); break; + } + + pStart = pOut+1; + } // endif (cReplacable[*pOut]) + } // end for + + if ( pOut != pStart ) + { + io_aFile.write( pStart, pOut-pStart ); + } +} + + +//*************************** XmlCode **************************// + +XmlCode::XmlCode( const String & i_sText ) + : sText(i_sText) +{ +} + +XmlCode::XmlCode( const char * i_sText ) + : sText(i_sText) +{ +} + +XmlCode::~XmlCode() +{ +} + +void +XmlCode::do_WriteOut( csv::bostream & io_aFile ) const +{ + io_aFile.write(sText); +} + + +//*************************** MultiItem **************************// + +MultiItem::MultiItem() +{ +} + +MultiItem::~MultiItem() +{ +} + +void +MultiItem::do_WriteOut( csv::bostream & io_aFile ) const +{ + ItemList::iterator itEnd = aItems.end(); + + for ( ItemList::iterator it = aItems.begin(); + it != itEnd; + ++it ) + { + (*it)->WriteOut( io_aFile ); + } + +} + + + +//*************************** Helpers **************************// + +void +StreamOut( Dyn< Item > & o_rContent, + DYN Item * let_dpItem ) +{ + MultiItem * pContent = 0; + if ( bool(o_rContent) ) + { + pContent = static_cast< MultiItem* >( o_rContent.MutablePtr() ); + csv_assert( dynamic_cast< MultiItem* >( o_rContent.MutablePtr() ) != 0 ); + } + else + { + pContent = new MultiItem; + o_rContent = pContent; + } + + csv_assert( let_dpItem != 0 ); + pContent->Add( let_dpItem ); +} + + + + +} // namespace xml +} // namespace csi + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/udm/util/makefile.mk b/udm/util/makefile.mk new file mode 100644 index 000000000000..4acc3f22d8da --- /dev/null +++ b/udm/util/makefile.mk @@ -0,0 +1,54 @@ +#************************************************************************* +# +# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. +# +# Copyright 2000, 2010 Oracle and/or its affiliates. +# +# OpenOffice.org - a multi-platform office productivity suite +# +# This file is part of OpenOffice.org. +# +# OpenOffice.org is free software: you can redistribute it and/or modify +# it under the terms of the GNU Lesser General Public License version 3 +# only, as published by the Free Software Foundation. +# +# OpenOffice.org 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 Lesser General Public License version 3 for more details +# (a copy is included in the LICENSE file that accompanied this code). +# +# You should have received a copy of the GNU Lesser General Public License +# version 3 along with OpenOffice.org. If not, see +# <http://www.openoffice.org/license.html> +# for a copy of the LGPLv3 License. +# +#************************************************************************* + +PRJ=.. + +PRJNAME=udm +TARGET=udm + +ENABLE_EXCEPTIONS=true + + +# --- Settings ----------------------------------------------------- + +.INCLUDE : settings.mk + + +# --- Files -------------------------------------------------------- + +LIB1FILES= \ + $(LB)$/csi_html.lib \ + $(LB)$/csi_xml.lib + + +# --- Targets ------------------------------------------------------ + +LIB1TARGET= $(LB)$/$(TARGET).lib +LIB1ARCHIV= $(LB)$/lib$(TARGET).a + + +.INCLUDE : target.mk |