Skip to content

Commit ad9c0dd

Browse files
committed
Fix bug in resource packing.
Fixes #107.
1 parent 07cb71e commit ad9c0dd

File tree

2 files changed

+26
-6
lines changed

2 files changed

+26
-6
lines changed

qml_test.go

+20
Original file line numberDiff line numberDiff line change
@@ -409,6 +409,26 @@ func testResourcesLoaded(c *C, loaded bool) {
409409
c.Assert(c.GetTestLog(), Matches, "(?s).*(<Foo>.*<Bar>|<Bar>.*<Foo>).*")
410410
}
411411

412+
func (s *S) TestResourcesIssue107(c *C) {
413+
var rp qml.ResourcesPacker
414+
415+
rp.Add("a/Foo.qml", []byte("import QtQuick 2.0\nItem { Component.onCompleted: console.log('<Foo>') }"))
416+
rp.Add("b/Bar.qml", []byte("import QtQuick 2.0\nItem { Component.onCompleted: console.log('<Bar>') }"))
417+
rp.Add("c/Baz.qml", []byte("import QtQuick 2.0\nItem { Component.onCompleted: console.log('<Baz>') }"))
418+
rp.Add("d/Buz.qml", []byte("import QtQuick 2.0\nItem { Component.onCompleted: console.log('<Buz>') }"))
419+
420+
r := rp.Pack()
421+
qml.LoadResources(r)
422+
423+
for _, name := range []string{"a/Foo", "b/Bar", "c/Baz", "d/Buz"} {
424+
component, err := s.engine.LoadFile("qrc:///" + name + ".qml")
425+
c.Assert(err, IsNil)
426+
root := component.Create(nil)
427+
defer root.Destroy()
428+
}
429+
c.Assert(c.GetTestLog(), Matches, "(?s).*<Foo>.*<Bar>.*<Baz>.*<Buz>.*")
430+
}
431+
412432
type TestData struct {
413433
*C
414434
engine *qml.Engine

resources.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ func newResourcesWriter(rp *ResourcesPacker) *resWriter {
164164
treeOffsets: make(map[*resFile]int),
165165
dataOffsets: make(map[*resFile]int),
166166
nameOffsets: make(map[string]int),
167-
pending: make([]*resFile, maxDepth(&rp.root)),
167+
pending: make([]*resFile, maxPending(&rp.root)),
168168
}
169169

170170
pending := rw.pending
@@ -185,14 +185,14 @@ func newResourcesWriter(rp *ResourcesPacker) *resWriter {
185185
return rw
186186
}
187187

188-
func maxDepth(file *resFile) int {
189-
max := 0
188+
func maxPending(file *resFile) int {
189+
max := 1
190190
for i := range file.children {
191-
if n := maxDepth(&file.children[i]); n > max {
192-
max = n
191+
if len(file.children) > 0 {
192+
max += maxPending(&file.children[i])
193193
}
194194
}
195-
return max + 1
195+
return max
196196
}
197197

198198
func (rw *resWriter) write() {

0 commit comments

Comments
 (0)