Todd 9b53a8ea41 schema: check for namespaces when decoding
- check for namespaces when decoding
- merge wordprocessingDrawing into wordprocessingml, this fixes some
  issues with cyclic import paths (XML namespaces don't translate to
  to valid go namespaces due to this)
2017-09-10 10:33:53 -05:00

130 lines
4.2 KiB
Go

// Copyright 2017 Baliance. All rights reserved.
//
// DO NOT EDIT: generated by gooxml ECMA-376 generator
//
// Use of this source code is governed by the terms of the Affero GNU General
// Public License version 3.0 as published by the Free Software Foundation and
// appearing in the file LICENSE included in the packaging of this file. A
// commercial license can be purchased by contacting sales@baliance.com.
package wordprocessingml
import (
"encoding/xml"
"log"
"baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml"
)
type WdCT_GraphicFrame struct {
CNvPr *drawingml.CT_NonVisualDrawingProps
CNvFrPr *drawingml.CT_NonVisualGraphicFrameProperties
Xfrm *drawingml.CT_Transform2D
Graphic *drawingml.Graphic
ExtLst *drawingml.CT_OfficeArtExtensionList
}
func NewWdCT_GraphicFrame() *WdCT_GraphicFrame {
ret := &WdCT_GraphicFrame{}
ret.CNvPr = drawingml.NewCT_NonVisualDrawingProps()
ret.CNvFrPr = drawingml.NewCT_NonVisualGraphicFrameProperties()
ret.Xfrm = drawingml.NewCT_Transform2D()
ret.Graphic = drawingml.NewGraphic()
return ret
}
func (m *WdCT_GraphicFrame) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
e.EncodeToken(start)
secNvPr := xml.StartElement{Name: xml.Name{Local: "wp:cNvPr"}}
e.EncodeElement(m.CNvPr, secNvPr)
secNvFrPr := xml.StartElement{Name: xml.Name{Local: "wp:cNvFrPr"}}
e.EncodeElement(m.CNvFrPr, secNvFrPr)
sexfrm := xml.StartElement{Name: xml.Name{Local: "wp:xfrm"}}
e.EncodeElement(m.Xfrm, sexfrm)
segraphic := xml.StartElement{Name: xml.Name{Local: "a:graphic"}}
e.EncodeElement(m.Graphic, segraphic)
if m.ExtLst != nil {
seextLst := xml.StartElement{Name: xml.Name{Local: "wp:extLst"}}
e.EncodeElement(m.ExtLst, seextLst)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *WdCT_GraphicFrame) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
m.CNvPr = drawingml.NewCT_NonVisualDrawingProps()
m.CNvFrPr = drawingml.NewCT_NonVisualGraphicFrameProperties()
m.Xfrm = drawingml.NewCT_Transform2D()
m.Graphic = drawingml.NewGraphic()
lWdCT_GraphicFrame:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name {
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "cNvPr"}:
if err := d.DecodeElement(m.CNvPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "cNvFrPr"}:
if err := d.DecodeElement(m.CNvFrPr, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "xfrm"}:
if err := d.DecodeElement(m.Xfrm, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/main", Local: "graphic"}:
if err := d.DecodeElement(m.Graphic, &el); err != nil {
return err
}
case xml.Name{Space: "http://schemas.openxmlformats.org/drawingml/2006/wordprocessingDrawing", Local: "extLst"}:
m.ExtLst = drawingml.NewCT_OfficeArtExtensionList()
if err := d.DecodeElement(m.ExtLst, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on WdCT_GraphicFrame %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lWdCT_GraphicFrame
case xml.CharData:
}
}
return nil
}
// Validate validates the WdCT_GraphicFrame and its children
func (m *WdCT_GraphicFrame) Validate() error {
return m.ValidateWithPath("WdCT_GraphicFrame")
}
// ValidateWithPath validates the WdCT_GraphicFrame and its children, prefixing error messages with path
func (m *WdCT_GraphicFrame) ValidateWithPath(path string) error {
if err := m.CNvPr.ValidateWithPath(path + "/CNvPr"); err != nil {
return err
}
if err := m.CNvFrPr.ValidateWithPath(path + "/CNvFrPr"); err != nil {
return err
}
if err := m.Xfrm.ValidateWithPath(path + "/Xfrm"); err != nil {
return err
}
if err := m.Graphic.ValidateWithPath(path + "/Graphic"); err != nil {
return err
}
if m.ExtLst != nil {
if err := m.ExtLst.ValidateWithPath(path + "/ExtLst"); err != nil {
return err
}
}
return nil
}