mirror of
https://github.com/unidoc/unioffice.git
synced 2025-04-29 13:49:10 +08:00
108 lines
2.8 KiB
Go
108 lines
2.8 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 wordprocessingml
|
|
|
|
import (
|
|
"encoding/xml"
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
type EG_PContentBase struct {
|
|
CustomXml *CT_CustomXmlRun
|
|
FldSimple []*CT_SimpleField
|
|
Hyperlink *CT_Hyperlink
|
|
}
|
|
|
|
func NewEG_PContentBase() *EG_PContentBase {
|
|
ret := &EG_PContentBase{}
|
|
return ret
|
|
}
|
|
|
|
func (m *EG_PContentBase) MarshalXML(e *xml.Encoder, start xml.StartElement) error {
|
|
if m.CustomXml != nil {
|
|
secustomXml := xml.StartElement{Name: xml.Name{Local: "w:customXml"}}
|
|
e.EncodeElement(m.CustomXml, secustomXml)
|
|
}
|
|
if m.FldSimple != nil {
|
|
sefldSimple := xml.StartElement{Name: xml.Name{Local: "w:fldSimple"}}
|
|
e.EncodeElement(m.FldSimple, sefldSimple)
|
|
}
|
|
if m.Hyperlink != nil {
|
|
sehyperlink := xml.StartElement{Name: xml.Name{Local: "w:hyperlink"}}
|
|
e.EncodeElement(m.Hyperlink, sehyperlink)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *EG_PContentBase) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
|
|
// initialize to default
|
|
lEG_PContentBase:
|
|
for {
|
|
tok, err := d.Token()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
switch el := tok.(type) {
|
|
case xml.StartElement:
|
|
switch el.Name.Local {
|
|
case "customXml":
|
|
m.CustomXml = NewCT_CustomXmlRun()
|
|
if err := d.DecodeElement(m.CustomXml, &el); err != nil {
|
|
return err
|
|
}
|
|
case "fldSimple":
|
|
tmp := NewCT_SimpleField()
|
|
if err := d.DecodeElement(tmp, &el); err != nil {
|
|
return err
|
|
}
|
|
m.FldSimple = append(m.FldSimple, tmp)
|
|
case "hyperlink":
|
|
m.Hyperlink = NewCT_Hyperlink()
|
|
if err := d.DecodeElement(m.Hyperlink, &el); err != nil {
|
|
return err
|
|
}
|
|
default:
|
|
log.Printf("skipping unsupported element on EG_PContentBase %v", el.Name)
|
|
if err := d.Skip(); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
case xml.EndElement:
|
|
break lEG_PContentBase
|
|
case xml.CharData:
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Validate validates the EG_PContentBase and its children
|
|
func (m *EG_PContentBase) Validate() error {
|
|
return m.ValidateWithPath("EG_PContentBase")
|
|
}
|
|
|
|
// ValidateWithPath validates the EG_PContentBase and its children, prefixing error messages with path
|
|
func (m *EG_PContentBase) ValidateWithPath(path string) error {
|
|
if m.CustomXml != nil {
|
|
if err := m.CustomXml.ValidateWithPath(path + "/CustomXml"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
for i, v := range m.FldSimple {
|
|
if err := v.ValidateWithPath(fmt.Sprintf("%s/FldSimple[%d]", path, i)); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
if m.Hyperlink != nil {
|
|
if err := m.Hyperlink.ValidateWithPath(path + "/Hyperlink"); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|