2020-08-23 14:15:53 +00:00
|
|
|
//
|
|
|
|
// Copyright 2020 FoxyUtils ehf. All rights reserved.
|
|
|
|
//
|
|
|
|
// This is a commercial product and requires a license to operate.
|
|
|
|
// A trial license can be obtained at https://unidoc.io
|
|
|
|
//
|
|
|
|
// DO NOT EDIT: generated by unitwist Go source code obfuscator.
|
|
|
|
//
|
|
|
|
// Use of this source code is governed by the UniDoc End User License Agreement
|
|
|
|
// terms that can be accessed at https://unidoc.io/eula/
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Package unioffice provides creation, reading, and writing of ECMA 376 Office Open
|
|
|
|
XML documents, spreadsheets and presentations. It is still early in
|
|
|
|
development, but is progressing quickly. This library takes a slightly
|
|
|
|
different approach from others, in that it starts by trying to support all of
|
|
|
|
the ECMA-376 standard when marshaling/unmarshaling XML documents. From there it
|
|
|
|
adds wrappers around the ECMA-376 derived types that provide a more convenient
|
|
|
|
interface.
|
|
|
|
|
|
|
|
The raw XML based types reside in the `schema/`` directory. These types are
|
|
|
|
always accessible from the wrapper types via a `X() method that returns the
|
|
|
|
raw type. Except for the base documents (document.Document,
|
|
|
|
spreadsheet.Workbook and presentation.Presentation), the other wrapper types are
|
|
|
|
value types with non-pointer methods. They exist solely to modify and return
|
|
|
|
data from one or more XML types.
|
|
|
|
|
|
|
|
The packages of interest are github.com/unidoc/unioffice/document,
|
|
|
|
unidoc/unioffice/spreadsheet and github.com/unidoc/unioffice/presentation.
|
|
|
|
|
|
|
|
*/
|
2023-09-16 17:56:36 +00:00
|
|
|
package unioffice ;import (_e "encoding/xml";_fc "errors";_f "fmt";_g "github.com/unidoc/unioffice/algo";_dac "github.com/unidoc/unioffice/common/logger";_b "log";_da "reflect";_c "strings";_d "unicode";);func _cfg (_gabf []*XSDAny )[]*any {_db :=[]*any {};for _ ,_ebff :=range _gabf {_egg :=&any {};_egg .XMLName =_ebff .XMLName ;_eab :=[]_e .Attr {};for _ ,_bda :=range _ebff .Attrs {if _bda .Name .Local !="\u0078\u006d\u006cn\u0073"{_eab =append (_eab ,_bda );};};_egg .Attrs =_eab ;_egg .Data =_ebff .Data ;_egg .Nodes =_cfg (_ebff .Nodes );_db =append (_db ,_egg );};return _db ;};
|
|
|
|
|
|
|
|
// AbsoluteImageFilename returns the full path to an image from the root of the
|
|
|
|
// zip container.
|
|
|
|
func AbsoluteImageFilename (dt DocType ,index int ,fileExtension string )string {_bg :=AbsoluteFilename (dt ,ImageType ,index );return _bg [0:len (_bg )-3]+fileExtension ;};
|
|
|
|
|
|
|
|
// Uint16 returns a copy of v as a pointer.
|
|
|
|
func Uint16 (v uint16 )*uint16 {_de :=v ;return &_de };
|
|
|
|
|
|
|
|
// DisableLogging sets the Log function to a no-op so that any log messages are
|
|
|
|
// silently discarded.
|
|
|
|
func DisableLogging (){Log =func (string ,...interface{}){}};var _gd =map[string ]interface{}{};
|
|
|
|
|
|
|
|
// UnmarshalXML implements the xml.Unmarshaler interface.
|
|
|
|
func (_gab *XSDAny )UnmarshalXML (d *_e .Decoder ,start _e .StartElement )error {_dc :=any {};if _fgd :=d .DecodeElement (&_dc ,&start );_fgd !=nil {return _fgd ;};_dee (&_dc );_gab .XMLName =_dc .XMLName ;_gab .Attrs =_dc .Attrs ;_gab .Data =_dc .Data ;_gab .Nodes =_cad (_dc .Nodes );return nil ;};
|
2022-12-06 11:56:49 +00:00
|
|
|
|
2023-08-06 17:57:53 +00:00
|
|
|
// RelativeImageFilename returns an image filename relative to the source file referenced
|
|
|
|
// from a relationships file. It is identical to RelativeFilename but is used particularly for images
|
|
|
|
// in order to handle different image formats.
|
2023-09-16 17:56:36 +00:00
|
|
|
func RelativeImageFilename (dt DocType ,relToTyp ,typ string ,index int ,fileExtension string )string {_fd :=RelativeFilename (dt ,relToTyp ,typ ,index );return _fd [0:len (_fd )-3]+fileExtension ;};
|
2021-09-22 16:41:01 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// Int64 returns a copy of v as a pointer.
|
|
|
|
func Int64 (v int64 )*int64 {_af :=v ;return &_af };
|
2022-12-06 11:56:49 +00:00
|
|
|
|
2023-08-06 17:57:53 +00:00
|
|
|
// NeedsSpacePreserve returns true if the string has leading or trailing space.
|
|
|
|
func NeedsSpacePreserve (s string )bool {if len (s )==0{return false ;};switch s [0]{case '\t','\n','\v','\f','\r',' ',0x85,0xA0:return true ;};switch s [len (s )-1]{case '\t','\n','\v','\f','\r',' ',0x85,0xA0:return true ;};return false ;};
|
2023-03-01 18:42:44 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// AddPreserveSpaceAttr adds an xml:space="preserve" attribute to a start
|
|
|
|
// element if it is required for the string s.
|
|
|
|
func AddPreserveSpaceAttr (se *_e .StartElement ,s string ){if NeedsSpacePreserve (s ){se .Attr =append (se .Attr ,_e .Attr {Name :_e .Name {Local :"\u0078m\u006c\u003a\u0073\u0070\u0061\u0063e"},Value :"\u0070\u0072\u0065\u0073\u0065\u0072\u0076\u0065"});};};var _ddg =map[string ]string {"\u0061":"\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0073\u0063\u0068\u0065m\u0061\u0073\u002e\u006f\u0070\u0065\u006e\u0078m\u006cf\u006f\u0072\u006d\u0061\u0074\u0073\u002e\u006f\u0072\u0067\u002f\u0064\u0072\u0061\u0077\u0069\u006e\u0067m\u006c\u002f\u0032\u0030\u0030\u0036\u002f\u006d\u0061\u0069\u006e","\u0064\u0063":"\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0072\u0067/\u0064c\u002f\u0065\u006c\u0065\u006d\u0065\u006e\u0074\u0073\u002f\u0031\u002e\u0031\u002f","\u0064c\u0074\u0065\u0072\u006d\u0073":"\u0068t\u0074\u0070\u003a\u002f/\u0070\u0075\u0072\u006c\u002eo\u0072g\u002fd\u0063\u002f\u0074\u0065\u0072\u006d\u0073/","\u006d\u0063":"\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u002e\u006f\u0070\u0065\u006e\u0078m\u006c\u0066\u006f\u0072\u006d\u0061\u0074\u0073\u002e\u006f\u0072\u0067\u002f\u006d\u0061\u0072\u006b\u0075\u0070\u002d\u0063\u006f\u006d\u0070\u0061\u0074\u0069\u0062\u0069\u006ci\u0074\u0079\u002f\u0032\u00300\u0036","\u006d\u006f":"\u0068\u0074\u0074\u0070\u003a\u002f/\u0073\u0063\u0068e\u006d\u0061\u0073.\u006d\u0069\u0063\u0072\u006f\u0073\u006f\u0066\u0074\u002ec\u006f\u006d\u002f\u006f\u0066fi\u0063\u0065\u002f\u006d\u0061\u0063\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u002f\u0032\u0030\u0030\u0038\u002f\u006d\u0061\u0069\u006e","\u0077":"ht\u0074\u0070:\u002f\u002f\u0073\u0063\u0068\u0065\u006d\u0061\u0073.\u006f\u0070\u0065\u006e\u0078\u006d\u006c\u0066\u006f\u0072\u006d\u0061\u0074\u0073\u002e\u006f\u0072\u0067\u002f\u0077\u006f\u0072\u0064\u0070\u0072\u006f\u0063\u0065s\u0073i\u006e\u0067\u006d\u006c\u002f\u0032\u0030\u00306\u002fm\u0061\u0069n","\u0077\u0031\u0030":"\u0075\u0072n\u003a\u0073\u0063\u0068e\u006d\u0061s\u002d\u006d\u0069\u0063\u0072\u006f\u0073\u006ff\u0074\u002d\u0063\u006f\u006d\u003a\u006f\u0066\u0066\u0069\u0063\u0065:\u0077\u006f\u0072\u0064","\u0077\u0031\u0034":"\u0068\u0074t\u0070\u003a\u002f\u002f\u0073c\u0068\u0065\u006d\u0061\u0073.\u006d\u0069\u0063\u0072\u006f\u0073\u006f\u0066\u0074\u002e\u0063\u006f\u006d\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u002f\u0077\u006f\u0072\u0064\u002f\u0032\u0030\u0031\u0030\u002f\u0077\u006f\u0072\u0064\u006d\u006c","\u0077\u0031\u0035":"\u0068\u0074t\u0070\u003a\u002f\u002f\u0073c\u0068\u0065\u006d\u0061\u0073.\u006d\u0069\u0063\u0072\u006f\u0073\u006f\u0066\u0074\u002e\u0063\u006f\u006d\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u002f\u0077\u006f\u0072\u0064\u002f\u0032\u0030\u0031\u0032\u002f\u0077\u006f\u0072\u0064\u006d\u006c","\u0077\u006e\u0065":"\u0068\u0074t\u0070\u003a\u002f\u002f\u0073c\u0068\u0065\u006d\u0061\u0073.\u006d\u0069\u0063\u0072\u006f\u0073\u006f\u0066\u0074\u002e\u0063\u006f\u006d\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u002f\u0077\u006f\u0072\u0064\u002f\u0032\u0030\u0030\u0036\u002f\u0077\u006f\u0072\u0064\u006d\u006c","\u0077\u0070":"\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u002e\u006f\u0070\u0065\u006ex\u006d\u006c\u0066\u006f\u0072\u006d\u0061\u0074\u0073\u002e\u006f\u0072\u0067\u002f\u0064\u0072a\u0077\u0069\u006e\u0067\u006d\u006c\u002f\u0032\u0030\u0030\u0036\u002f\u0077\u006f\u0072\u0064\u0070\u0072\u006f\u0063\u0065\u0073\u0073\u0069n\u0067\u0044\u0072\u0061\u0077i\u006e\u0067","\u0077\u0070\u0031\u0034":"\u0068\u0074\u0074\u0070\u003a\u002f/\u0073\u0063\u0068\u0065\u006da\u0073\u002e\u006d\u0069\u0063\u0072o\u0073\u006f\u0066\u0074\u002ec\u006f\u006d\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u002f\u0077\u006fr\u0064\u002f\u0032\u0030\u0031\u0030\u002f\u0077\u006f\u0072\u0064\u0070\u0072\u006f\u0063e\u0073\u0073\u0069\u006e\u0067\u0044\u0072\u0061w\u0069\u006e\u0067","\u0077\u0070\u0063":"\u0068\u0074t\u0070\u003a\u002f\u002f\u0073\u0063\u0068\u0065\u006d\u0061\u0073\u002e\u006d\u0069\u0063
|
2023-03-01 18:42:44 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// Float32 returns a copy of v as a pointer.
|
|
|
|
func Float32 (v float32 )*float32 {_gbb :=v ;return &_gbb };
|
2023-08-06 17:57:53 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// CreateElement creates an element with the given namespace and name. It is
|
|
|
|
// used to unmarshal some xsd:any elements to the appropriate concrete type.
|
|
|
|
func CreateElement (start _e .StartElement )(Any ,error ){_gdc ,_df :=_gd [start .Name .Space +"\u002f"+start .Name .Local ];if !_df {_bf :=&XSDAny {};return _bf ,nil ;};_dd :=_da .ValueOf (_gdc );_ca :=_dd .Call (nil );if len (_ca )!=1{return nil ,_f .Errorf ("\u0063\u006fn\u0073\u0074\u0072\u0075\u0063t\u006f\u0072\u0020\u0066\u0075n\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u0068\u006f\u0075\u006c\u0064\u0020\u0072\u0065\u0074\u0075\u0072\u006e\u0020\u006f\u006e\u0065\u0020\u0076\u0061\u006c\u0075\u0065\u002c\u0020\u0067\u006f\u0074\u0020\u0025\u0064",len (_ca ));};_eb ,_df :=_ca [0].Interface ().(Any );if !_df {return nil ,_fc .New ("\u0063o\u006e\u0073t\u0072\u0075\u0063\u0074o\u0072\u0020\u0066u\u006e\u0063\u0074\u0069\u006f\u006e\u0020\u0073\u0068ou\u006c\u0064\u0020r\u0065\u0074u\u0072\u006e\u0020\u0061\u006e\u0079 \u0027\u0041n\u0079\u0027");};return _eb ,nil ;};
|
2021-07-30 17:03:26 +00:00
|
|
|
|
2023-07-04 11:04:03 +00:00
|
|
|
// MarshalXML implements the xml.Marshaler interface.
|
2023-09-16 17:56:36 +00:00
|
|
|
func (_cde *XSDAny )MarshalXML (e *_e .Encoder ,start _e .StartElement )error {start .Name =_cde .XMLName ;start .Attr =_cde .Attrs ;_dfc :=any {};_dfc .XMLName =_cde .XMLName ;_dfc .Attrs =_cde .Attrs ;_dfc .Data =_cde .Data ;_dfc .Nodes =_cfg (_cde .Nodes );_fbc :=[]string {};_gfd :=false ;_eee :=nsSet {_fb :map[string ]string {},_eg :map[string ]string {}};_cde .collectNS (&_eee );_eee .applyToNode (&_dfc );for _ ,_eba :=range _eee ._dea {if _ ,_agc :=_cg [_eba ];_agc {_fbc =append (_fbc ,_eba );};_egb :=_eee ._eg [_eba ];_dfc .Attrs =append (_dfc .Attrs ,_e .Attr {Name :_e .Name {Local :"\u0078\u006d\u006c\u006e\u0073\u003a"+_eba },Value :_egb });if _eba =="\u006d\u0063"{_gfd =true ;};};for _ ,_bbff :=range _dfc .Attrs {if _bbff .Name .Local =="\u006d\u0063\u003aI\u0067\u006e\u006f\u0072\u0061\u0062\u006c\u0065"{_gfd =false ;break ;};};if _gfd &&len (_fbc )> 0{_dfc .Attrs =append (_dfc .Attrs ,_e .Attr {Name :_e .Name {Local :"\u006d\u0063\u003aI\u0067\u006e\u006f\u0072\u0061\u0062\u006c\u0065"},Value :_c .Join (_fbc ,"\u0020")});};return e .Encode (&_dfc );};func _dee (_fef *any ){for _ ,_bb :=range _fef .Nodes {_dee (_bb );};};
|
2021-05-31 16:22:30 +00:00
|
|
|
|
2023-08-06 17:57:53 +00:00
|
|
|
// RegisterConstructor registers a constructor function used for unmarshaling
|
|
|
|
// xsd:any elements.
|
2023-09-16 17:56:36 +00:00
|
|
|
func RegisterConstructor (ns ,name string ,fn interface{}){_gd [ns +"\u002f"+name ]=fn };
|
2021-05-31 16:22:30 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// Bool returns a copy of v as a pointer.
|
|
|
|
func Bool (v bool )*bool {_gbe :=v ;return &_gbe };const (ContentTypesFilename ="\u005b\u0043\u006f\u006ete\u006e\u0074\u005f\u0054\u0079\u0070\u0065\u0073\u005d\u002e\u0078\u006d\u006c";BaseRelsFilename ="_\u0072\u0065\u006c\u0073\u002f\u002e\u0072\u0065\u006c\u0073";);
|
2022-01-15 21:17:38 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// DocType represents one of the three document types supported (docx/xlsx/pptx)
|
|
|
|
type DocType byte ;
|
2021-07-30 17:03:26 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// XSDAny is used to marshal/unmarshal xsd:any types in the OOXML schema.
|
|
|
|
type XSDAny struct{XMLName _e .Name ;Attrs []_e .Attr ;Data []byte ;Nodes []*XSDAny ;};func _cad (_cfc []*any )[]*XSDAny {_ebg :=[]*XSDAny {};for _ ,_ef :=range _cfc {_cag :=&XSDAny {};_cag .XMLName =_ef .XMLName ;_cag .Attrs =_ef .Attrs ;_cag .Data =_ef .Data ;_cag .Nodes =_cad (_ef .Nodes );_ebg =append (_ebg ,_cag );};return _ebg ;};
|
2021-07-30 17:03:26 +00:00
|
|
|
|
2023-08-06 17:57:53 +00:00
|
|
|
// Stringf formats according to a format specifier and returns a pointer to the
|
|
|
|
// resulting string.
|
2023-09-16 17:56:36 +00:00
|
|
|
func Stringf (f string ,args ...interface{})*string {_ea :=_f .Sprintf (f ,args ...);return &_ea };var Log =_b .Printf ;const (Unknown DocType =iota ;DocTypeSpreadsheet ;DocTypeDocument ;DocTypePresentation ;);
|
2022-06-27 19:44:23 +00:00
|
|
|
|
2023-08-06 17:57:53 +00:00
|
|
|
// Float64 returns a copy of v as a pointer.
|
2023-09-16 17:56:36 +00:00
|
|
|
func Float64 (v float64 )*float64 {_gde :=v ;return &_gde };var _cg =map[string ]bool {"\u0077\u0031\u0030":true ,"\u0077\u0031\u0034":true ,"\u0077\u0070\u0031\u0034":true ,"\u0077\u0031\u0035":true ,"\u0078\u0031\u0035a\u0063":true ,"\u0077\u0031\u0036s\u0065":true ,"\u0077\u0031\u0036\u0063\u0069\u0064":true ,"\u0077\u0031\u0036":true ,"\u0077\u0031\u0036\u0063\u0065\u0078":true };const (OfficeDocumentTypeStrict ="\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002e\u006f\u0072g\u002f\u006f\u006f\u0078\u006d\u006c\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u0044\u006f\u0063u\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073\u0068\u0069\u0070\u0073\u002f\u006f\u0066\u0066\u0069\u0063e\u0044\u006f\u0063\u0075\u006de\u006e\u0074";StylesTypeStrict ="\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002e\u006frg\u002fo\u006f\u0078\u006d\u006c\u002f\u006f\u0066\u0066\u0069\u0063\u0065\u0044o\u0063\u0075\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073\u0068i\u0070\u0073\u002f\u0073\u0074\u0079\u006c\u0065\u0073";ThemeTypeStrict ="h\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002e\u006f\u0072\u0067\u002f\u006f\u006f\u0078\u006d\u006c\u002fo\u0066f\u0069\u0063\u0065\u0044o\u0063\u0075m\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073\u0068\u0069\u0070\u0073\u002f\u0074\u0068\u0065\u006d\u0065";ControlTypeStrict ="\u0068t\u0074\u0070\u003a\u002f\u002f\u0070\u0075rl\u002e\u006f\u0063\u006c\u0063\u002e\u006f\u0072\u0067\u002f\u006f\u006f\u0078\u006dl\u002f\u006ff\u0066\u0069\u0063e\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006fn\u0073\u0068ip\u0073\u002f\u0063o\u006e\u0074\u0072\u006f\u006c";SettingsTypeStrict ="\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002eo\u0072\u0067\u002f\u006f\u006f\u0078\u006d\u006c\u002f\u006ff\u0066\u0069\u0063\u0065\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074i\u006f\u006e\u0073\u0068\u0069\u0070s\u002f\u0073e\u0074\u0074i\u006eg\u0073";ImageTypeStrict ="h\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002e\u006f\u0072\u0067\u002f\u006f\u006f\u0078\u006d\u006c\u002fo\u0066f\u0069\u0063\u0065\u0044o\u0063\u0075m\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073\u0068\u0069\u0070\u0073\u002f\u0069\u006d\u0061\u0067\u0065";CommentsTypeStrict ="\u0068\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002eo\u0072\u0067\u002f\u006f\u006f\u0078\u006d\u006c\u002f\u006ff\u0066\u0069\u0063\u0065\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074i\u006f\u006e\u0073\u0068\u0069\u0070s\u002f\u0063o\u006d\u006de\u006et\u0073";ThumbnailTypeStrict ="\u0068\u0074\u0074\u0070\u003a/\u002f\u0070\u0075\u0072\u006c\u002eo\u0063\u006c\u0063\u002e\u006f\u0072\u0067/\u006f\u006f\u0078m\u006c\u002f\u006f\u0066f\u0069\u0063\u0065\u0044\u006f\u0063u\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073\u0068\u0069\u0070s\u002f\u006d\u0065\u0074\u0061\u0064\u0061\u0074\u0061\u002f\u0074\u0068\u0075\u006d\u0062\u006e\u0061\u0069\u006c";DrawingTypeStrict ="\u0068t\u0074\u0070\u003a\u002f\u002f\u0070\u0075rl\u002e\u006f\u0063\u006c\u0063\u002e\u006f\u0072\u0067\u002f\u006f\u006f\u0078\u006dl\u002f\u006ff\u0066\u0069\u0063e\u0044\u006f\u0063\u0075\u006d\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006fn\u0073\u0068ip\u0073\u002f\u0064r\u0061\u0077\u0069\u006e\u0067";ChartTypeStrict ="h\u0074\u0074\u0070\u003a\u002f\u002f\u0070\u0075\u0072\u006c\u002e\u006f\u0063\u006c\u0063\u002e\u006f\u0072\u0067\u002f\u006f\u006f\u0078\u006d\u006c\u002fo\u0066f\u0069\u0063\u0065\u0044o\u0063\u0075m\u0065\u006e\u0074\u002f\u0072\u0065\u006c\u0061\u0074\u0069\u006f\u006e\u0073\u0068
|
2023-06-10 07:12:37 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// Uint8 returns a copy of v as a pointer.
|
|
|
|
func Uint8 (v uint8 )*uint8 {_ae :=v ;return &_ae };
|
|
|
|
|
|
|
|
// Int32 returns a copy of v as a pointer.
|
|
|
|
func Int32 (v int32 )*int32 {_cee :=v ;return &_cee };var _afc =func ()map[string ]string {_dfa :=map[string ]string {};for _gbd ,_gg :=range _ddg {_dfa [_gg ]=_gbd ;};return _dfa ;}();func (_bad nsSet )applyToNode (_cac *any ){if _cac .XMLName .Space ==""{return ;};_dcg :=_bad .getPrefix (_cac .XMLName .Space );_cac .XMLName .Space ="";_cac .XMLName .Local =_dcg +"\u003a"+_cac .XMLName .Local ;_bgc :=_cac .Attrs ;_cac .Attrs =nil ;for _ ,_fed :=range _bgc {if _fed .Name .Space =="\u0078\u006d\u006cn\u0073"{continue ;};if _fed .Name .Space !=""{_ega :=_bad .getPrefix (_fed .Name .Space );_fed .Name .Space ="";_fed .Name .Local =_ega +"\u003a"+_fed .Name .Local ;};_cac .Attrs =append (_cac .Attrs ,_fed );};for _ ,_fbg :=range _cac .Nodes {_bad .applyToNode (_fbg );};};type any struct{XMLName _e .Name ;Attrs []_e .Attr `xml:",any,attr"`;Nodes []*any `xml:",any"`;Data []byte `xml:",chardata"`;};
|
2023-04-15 17:27:31 +00:00
|
|
|
|
2023-08-06 17:57:53 +00:00
|
|
|
// RelativeFilename returns a filename relative to the source file referenced
|
|
|
|
// from a relationships file. Index is used in some cases for files which there
|
|
|
|
// may be more than one of (e.g. worksheets/drawings/charts)
|
2023-09-16 17:56:36 +00:00
|
|
|
func RelativeFilename (dt DocType ,relToTyp ,typ string ,index int )string {_ad :=AbsoluteFilename (dt ,typ ,index );if relToTyp ==""{return _ad ;};_cc :=AbsoluteFilename (dt ,relToTyp ,index );_ce :=_c .Split (_cc ,"\u002f");_gb :=_c .Split (_ad ,"\u002f");_ee :=0;for _bd :=0;_bd < len (_ce );_bd ++{if _ce [_bd ]==_gb [_bd ]{_ee ++;};if _bd +1==len (_gb ){break ;};};_ce =_ce [_ee :];_gb =_gb [_ee :];_ge :=len (_ce )-1;if _ge > 0{return _g .RepeatString ("\u002e\u002e\u002f",_ge )+_c .Join (_gb ,"\u002f");};return _c .Join (_gb ,"\u002f");};
|
2023-05-26 09:49:04 +00:00
|
|
|
|
2023-09-16 17:56:36 +00:00
|
|
|
// String returns a copy of v as a pointer.
|
|
|
|
func String (v string )*string {_fe :=v ;return &_fe };const _bdf =true ;
|
|
|
|
|
|
|
|
// Any is the interface used for marshaling/unmarshaling xsd:any
|
|
|
|
type Any interface{MarshalXML (_fg *_e .Encoder ,_bc _e .StartElement )error ;UnmarshalXML (_be *_e .Decoder ,_ga _e .StartElement )error ;};const MinGoVersion =_bdf ;
|
|
|
|
|
|
|
|
// AbsoluteFilename returns the full path to a file from the root of the zip
|
|
|
|
// container. Index is used in some cases for files which there may be more than
|
|
|
|
// one of (e.g. worksheets/drawings/charts)
|
|
|
|
func AbsoluteFilename (dt DocType ,typ string ,index int )string {switch typ {case CorePropertiesType :return "\u0064\u006f\u0063\u0050\u0072\u006f\u0070\u0073\u002f\u0063\u006f\u0072e\u002e\u0078\u006d\u006c";case CustomPropertiesType :return "\u0064\u006f\u0063\u0050ro\u0070\u0073\u002f\u0063\u0075\u0073\u0074\u006f\u006d\u002e\u0078\u006d\u006c";case ExtendedPropertiesType ,ExtendedPropertiesTypeStrict :return "\u0064\u006fc\u0050\u0072\u006fp\u0073\u002f\u0061\u0070\u0070\u002e\u0078\u006d\u006c";case ThumbnailType ,ThumbnailTypeStrict :return "\u0064\u006f\u0063Pr\u006f\u0070\u0073\u002f\u0074\u0068\u0075\u006d\u0062\u006e\u0061\u0069\u006c\u002e\u006a\u0070\u0065\u0067";case CustomXMLType :return _f .Sprintf ("c\u0075s\u0074\u006f\u006d\u0058\u006d\u006c\u002f\u0069t\u0065\u006d\u0025\u0064.x\u006d\u006c",index );case PresentationPropertiesType :return "\u0070\u0070\u0074\u002f\u0070\u0072\u0065\u0073\u0050\u0072\u006f\u0070s\u002e\u0078\u006d\u006c";case ViewPropertiesType :switch dt {case DocTypePresentation :return "\u0070\u0070\u0074\u002f\u0076\u0069\u0065\u0077\u0050\u0072\u006f\u0070s\u002e\u0078\u006d\u006c";case DocTypeSpreadsheet :return "\u0078\u006c/\u0076\u0069\u0065w\u0050\u0072\u006f\u0070\u0073\u002e\u0078\u006d\u006c";case DocTypeDocument :return "\u0077o\u0072d\u002f\u0076\u0069\u0065\u0077P\u0072\u006fp\u0073\u002e\u0078\u006d\u006c";};case TableStylesType :switch dt {case DocTypePresentation :return "\u0070\u0070\u0074\u002fta\u0062\u006c\u0065\u0053\u0074\u0079\u006c\u0065\u0073\u002e\u0078\u006d\u006c";case DocTypeSpreadsheet :return "\u0078l\u002ft\u0061\u0062\u006c\u0065\u0053t\u0079\u006ce\u0073\u002e\u0078\u006d\u006c";case DocTypeDocument :return "w\u006fr\u0064\u002f\u0074\u0061\u0062\u006c\u0065\u0053t\u0079\u006c\u0065\u0073.x\u006d\u006c";};case HyperLinkType :return "";case OfficeDocumentType ,OfficeDocumentTypeStrict :switch dt {case DocTypeSpreadsheet :return "\u0078l\u002fw\u006f\u0072\u006b\u0062\u006f\u006f\u006b\u002e\u0078\u006d\u006c";case DocTypeDocument :return "\u0077\u006f\u0072\u0064\u002f\u0064\u006f\u0063\u0075\u006d\u0065\u006et\u002e\u0078\u006d\u006c";case DocTypePresentation :return "p\u0070t\u002f\u0070\u0072\u0065\u0073\u0065\u006e\u0074a\u0074\u0069\u006f\u006e.x\u006d\u006c";default:_dac .Log .Debug ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0074\u0079\u0070\u0065 \u0025\u0073\u0020\u0070\u0061\u0069\u0072\u0020\u0061\u006e\u0064\u0020\u0025\u0076",typ ,dt );};case ThemeType ,ThemeTypeStrict ,ThemeContentType :switch dt {case DocTypeSpreadsheet :return _f .Sprintf ("x\u006c/\u0074\u0068\u0065\u006d\u0065\u002f\u0074\u0068e\u006d\u0065\u0025\u0064.x\u006d\u006c",index );case DocTypeDocument :return _f .Sprintf ("\u0077\u006f\u0072\u0064/t\u0068\u0065\u006d\u0065\u002f\u0074\u0068\u0065\u006d\u0065\u0025\u0064\u002e\u0078m\u006c",index );case DocTypePresentation :return _f .Sprintf ("p\u0070\u0074\u002f\u0074he\u006de\u002f\u0074\u0068\u0065\u006de\u0025\u0064\u002e\u0078\u006d\u006c",index );default:_dac .Log .Debug ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0074\u0079\u0070\u0065 \u0025\u0073\u0020\u0070\u0061\u0069\u0072\u0020\u0061\u006e\u0064\u0020\u0025\u0076",typ ,dt );};case StylesType ,StylesTypeStrict :switch dt {case DocTypeSpreadsheet :return "\u0078\u006c\u002f\u0073\u0074\u0079\u006c\u0065\u0073\u002e\u0078\u006d\u006c";case DocTypeDocument :return "\u0077o\u0072d\u002f\u0073\u0074\u0079\u006c\u0065\u0073\u002e\u0078\u006d\u006c";case DocTypePresentation :return "\u0070\u0070\u0074\u002f\u0073\u0074\u0079\u006c\u0065s\u002e\u0078\u006d\u006c";default:_dac .Log .Debug ("\u0075\u006e\u0073u\u0070\u0070\u006f\u0072t\u0065\u0064\u0020\u0074\u0079\u0070\u0065 \u0025\u0073\u0020\u0070\u0061\u0069\u0072\u0020\u0061\u006e\u0064\u0020\u0025\u0076",typ ,dt );};case ChartType ,ChartTypeStrict ,ChartContentType :switch dt {case DocTypeSpreadsheet :return _f .Sprintf ("x\u006c\u002f\u0063\u0068ar\u0074s\u002f\u0063\u0068\u0061\u0072t\u0025\u0064\u002e\u0078\u006d\u006c",index );case DocTypeDocument :return _f .Sprin
|
|
|
|
|
|
|
|
// Uint64 returns a copy of v as a pointer.
|
|
|
|
func Uint64 (v uint64 )*uint64 {_dfd :=v ;return &_dfd };
|
|
|
|
|
|
|
|
// Uint32 returns a copy of v as a pointer.
|
|
|
|
func Uint32 (v uint32 )*uint32 {_dag :=v ;return &_dag };
|
|
|
|
|
|
|
|
// Int8 returns a copy of v as a pointer.
|
|
|
|
func Int8 (v int8 )*int8 {_gf :=v ;return &_gf };
|