forked from richardlehane/msoleps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
property.go
84 lines (75 loc) · 2.19 KB
/
property.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// Copyright 2014 Richard Lehane. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package msoleps
import (
"encoding/binary"
"github.com/richardlehane/msoleps/types"
)
type Property struct {
Name string
T types.Type
}
func (p *Property) String() string {
return p.T.String()
}
func (p *Property) Type() string {
return p.T.Type()
}
type propertySetStream struct {
byteOrder uint16
version uint16
SystemID uint32
CLSID types.Guid
numPropertySets uint32
fmtidA types.Guid
offsetA uint32
fmtidB types.Guid // This can be absent (i.e. not null)
offsetB uint32
}
func makePropertySetStream(b []byte) (*propertySetStream, error) {
if len(b) < 48 {
return nil, ErrFormat
}
ps := &propertySetStream{}
ps.byteOrder = binary.LittleEndian.Uint16(b[:2])
ps.version = binary.LittleEndian.Uint16(b[2:4])
ps.SystemID = binary.LittleEndian.Uint32(b[4:8])
g, _ := types.MakeGuid(b[8:])
ps.CLSID = g.(types.Guid)
ps.numPropertySets = binary.LittleEndian.Uint32(b[24:28])
g, _ = types.MakeGuid(b[28:])
ps.fmtidA, _ = g.(types.Guid)
ps.offsetA = binary.LittleEndian.Uint32(b[44:48])
if ps.numPropertySets != 2 {
return ps, nil
}
if len(b) < 68 {
return nil, ErrFormat
}
g, _ = types.MakeGuid(b[48:])
ps.fmtidB = g.(types.Guid)
ps.offsetB = binary.LittleEndian.Uint32(b[64:68])
return ps, nil
}
type propertySet struct {
size uint32
numProperties uint32
idsOffs []propertyIDandOffset
dict map[uint32]string
code types.CodePageID
}
type propertyIDandOffset struct {
id uint32
offset uint32
}