Todd ba68d59d67 schema: serialize booleans as 1/0 instead of true/false
This matches what the MS products and LibreOffice do.
2017-09-04 11:08:29 -05:00

139 lines
3.7 KiB
Go

// Copyright 2017 Baliance. All rights reserved.
//
// 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 presentationml
import (
"encoding/xml"
"fmt"
"log"
"strconv"
"baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml"
)
type CT_TLGraphicalObjectBuild struct {
// Build As One
BldAsOne *CT_Empty
// Build Sub Elements
BldSub *drawingml.CT_AnimationGraphicalObjectBuildProperties
SpidAttr *uint32
GrpIdAttr *uint32
UiExpandAttr *bool
}
func NewCT_TLGraphicalObjectBuild() *CT_TLGraphicalObjectBuild {
ret := &CT_TLGraphicalObjectBuild{}
return ret
}
func (m *CT_TLGraphicalObjectBuild) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.SpidAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "spid"},
Value: fmt.Sprintf("%v", *m.SpidAttr)})
}
if m.GrpIdAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "grpId"},
Value: fmt.Sprintf("%v", *m.GrpIdAttr)})
}
if m.UiExpandAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "uiExpand"},
Value: fmt.Sprintf("%d", b2i(*m.UiExpandAttr))})
}
e.EncodeToken(start)
if m.BldAsOne != nil {
sebldAsOne := xml.StartElement{Name: xml.Name{Local: "p:bldAsOne"}}
e.EncodeElement(m.BldAsOne, sebldAsOne)
}
if m.BldSub != nil {
sebldSub := xml.StartElement{Name: xml.Name{Local: "p:bldSub"}}
e.EncodeElement(m.BldSub, sebldSub)
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_TLGraphicalObjectBuild) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "spid" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.SpidAttr = &pt
}
if attr.Name.Local == "grpId" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.GrpIdAttr = &pt
}
if attr.Name.Local == "uiExpand" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.UiExpandAttr = &parsed
}
}
lCT_TLGraphicalObjectBuild:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name.Local {
case "bldAsOne":
m.BldAsOne = NewCT_Empty()
if err := d.DecodeElement(m.BldAsOne, &el); err != nil {
return err
}
case "bldSub":
m.BldSub = drawingml.NewCT_AnimationGraphicalObjectBuildProperties()
if err := d.DecodeElement(m.BldSub, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on CT_TLGraphicalObjectBuild %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_TLGraphicalObjectBuild
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_TLGraphicalObjectBuild and its children
func (m *CT_TLGraphicalObjectBuild) Validate() error {
return m.ValidateWithPath("CT_TLGraphicalObjectBuild")
}
// ValidateWithPath validates the CT_TLGraphicalObjectBuild and its children, prefixing error messages with path
func (m *CT_TLGraphicalObjectBuild) ValidateWithPath(path string) error {
if m.BldAsOne != nil {
if err := m.BldAsOne.ValidateWithPath(path + "/BldAsOne"); err != nil {
return err
}
}
if m.BldSub != nil {
if err := m.BldSub.ValidateWithPath(path + "/BldSub"); err != nil {
return err
}
}
return nil
}