Todd 59b2711e1b schema: apply more default values
These are implied values as they are the defaults in the XSD
for optional attributes/elements. However I've noticed that
I keep running into issues where Mac Excel/Word fail to open
a file unless an optional default is provided.

I'll just add them all to hopefully increase compatibility and
save painful file format debugging sessions later.
2017-09-04 17:14:06 -05:00

159 lines
4.3 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"
"baliance.com/gooxml/schema/schemas.openxmlformats.org/drawingml"
)
type CT_TLCommonMediaNodeData struct {
// Volume
VolAttr *drawingml.ST_PositiveFixedPercentage
// Mute
MuteAttr *bool
// Number of Slides
NumSldAttr *uint32
// Show When Stopped
ShowWhenStoppedAttr *bool
// Common Time Node Properties
CTn *CT_TLCommonTimeNodeData
TgtEl *CT_TLTimeTargetElement
}
func NewCT_TLCommonMediaNodeData() *CT_TLCommonMediaNodeData {
ret := &CT_TLCommonMediaNodeData{}
ret.MuteAttr = gooxml.Bool(false)
ret.NumSldAttr = gooxml.Uint32(1)
ret.ShowWhenStoppedAttr = gooxml.Bool(true)
ret.CTn = NewCT_TLCommonTimeNodeData()
ret.TgtEl = NewCT_TLTimeTargetElement()
return ret
}
func (m *CT_TLCommonMediaNodeData) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.VolAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "vol"},
Value: fmt.Sprintf("%v", *m.VolAttr)})
}
if m.MuteAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "mute"},
Value: fmt.Sprintf("%d", b2i(*m.MuteAttr))})
}
if m.NumSldAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "numSld"},
Value: fmt.Sprintf("%v", *m.NumSldAttr)})
}
if m.ShowWhenStoppedAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "showWhenStopped"},
Value: fmt.Sprintf("%d", b2i(*m.ShowWhenStoppedAttr))})
}
e.EncodeToken(start)
secTn := xml.StartElement{Name: xml.Name{Local: "p:cTn"}}
e.EncodeElement(m.CTn, secTn)
setgtEl := xml.StartElement{Name: xml.Name{Local: "p:tgtEl"}}
e.EncodeElement(m.TgtEl, setgtEl)
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_TLCommonMediaNodeData) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
m.MuteAttr = gooxml.Bool(false)
m.NumSldAttr = gooxml.Uint32(1)
m.ShowWhenStoppedAttr = gooxml.Bool(true)
m.CTn = NewCT_TLCommonTimeNodeData()
m.TgtEl = NewCT_TLTimeTargetElement()
for _, attr := range start.Attr {
if attr.Name.Local == "vol" {
parsed, err := ParseUnionST_PositiveFixedPercentage(attr.Value)
if err != nil {
return err
}
m.VolAttr = &parsed
}
if attr.Name.Local == "mute" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.MuteAttr = &parsed
}
if attr.Name.Local == "numSld" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.NumSldAttr = &pt
}
if attr.Name.Local == "showWhenStopped" {
parsed, err := strconv.ParseBool(attr.Value)
if err != nil {
return err
}
m.ShowWhenStoppedAttr = &parsed
}
}
lCT_TLCommonMediaNodeData:
for {
tok, err := d.Token()
if err != nil {
return err
}
switch el := tok.(type) {
case xml.StartElement:
switch el.Name.Local {
case "cTn":
if err := d.DecodeElement(m.CTn, &el); err != nil {
return err
}
case "tgtEl":
if err := d.DecodeElement(m.TgtEl, &el); err != nil {
return err
}
default:
log.Printf("skipping unsupported element on CT_TLCommonMediaNodeData %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_TLCommonMediaNodeData
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_TLCommonMediaNodeData and its children
func (m *CT_TLCommonMediaNodeData) Validate() error {
return m.ValidateWithPath("CT_TLCommonMediaNodeData")
}
// ValidateWithPath validates the CT_TLCommonMediaNodeData and its children, prefixing error messages with path
func (m *CT_TLCommonMediaNodeData) ValidateWithPath(path string) error {
if m.VolAttr != nil {
if err := m.VolAttr.ValidateWithPath(path + "/VolAttr"); err != nil {
return err
}
}
if err := m.CTn.ValidateWithPath(path + "/CTn"); err != nil {
return err
}
if err := m.TgtEl.ValidateWithPath(path + "/TgtEl"); err != nil {
return err
}
return nil
}