2019-08-02 10:49:16 +00:00

136 lines
3.1 KiB
Go

// Copyright 2017 FoxyUtils ehf. 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 via https://unidoc.io website.
package sml
import (
"encoding/xml"
"fmt"
"strconv"
"github.com/unidoc/unioffice"
)
type CT_I struct {
// Item Type
TAttr ST_ItemType
// Repeated Items Count
RAttr *uint32
// Data Field Index
IAttr *uint32
// Row / Column Item Index
X []*CT_X
}
func NewCT_I() *CT_I {
ret := &CT_I{}
return ret
}
func (m *CT_I) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
if m.TAttr != ST_ItemTypeUnset {
attr, err := m.TAttr.MarshalXMLAttr(xml.Name{Local: "t"})
if err != nil {
return err
}
start.Attr = append(start.Attr, attr)
}
if m.RAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "r"},
Value: fmt.Sprintf("%v", *m.RAttr)})
}
if m.IAttr != nil {
start.Attr = append(start.Attr, xml.Attr{Name: xml.Name{Local: "i"},
Value: fmt.Sprintf("%v", *m.IAttr)})
}
e.EncodeToken(start)
if m.X != nil {
sex := xml.StartElement{Name: xml.Name{Local: "ma:x"}}
for _, c := range m.X {
e.EncodeElement(c, sex)
}
}
e.EncodeToken(xml.EndElement{Name: start.Name})
return nil
}
func (m *CT_I) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
// initialize to default
for _, attr := range start.Attr {
if attr.Name.Local == "t" {
m.TAttr.UnmarshalXMLAttr(attr)
continue
}
if attr.Name.Local == "r" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.RAttr = &pt
continue
}
if attr.Name.Local == "i" {
parsed, err := strconv.ParseUint(attr.Value, 10, 32)
if err != nil {
return err
}
pt := uint32(parsed)
m.IAttr = &pt
continue
}
}
lCT_I:
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/spreadsheetml/2006/main", Local: "x"},
xml.Name{Space: "http://purl.oclc.org/ooxml/spreadsheetml/main", Local: "x"}:
tmp := NewCT_X()
if err := d.DecodeElement(tmp, &el); err != nil {
return err
}
m.X = append(m.X, tmp)
default:
unioffice.Log("skipping unsupported element on CT_I %v", el.Name)
if err := d.Skip(); err != nil {
return err
}
}
case xml.EndElement:
break lCT_I
case xml.CharData:
}
}
return nil
}
// Validate validates the CT_I and its children
func (m *CT_I) Validate() error {
return m.ValidateWithPath("CT_I")
}
// ValidateWithPath validates the CT_I and its children, prefixing error messages with path
func (m *CT_I) ValidateWithPath(path string) error {
if err := m.TAttr.ValidateWithPath(path + "/TAttr"); err != nil {
return err
}
for i, v := range m.X {
if err := v.ValidateWithPath(fmt.Sprintf("%s/X[%d]", path, i)); err != nil {
return err
}
}
return nil
}