Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kdenlive
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
261
Issues
261
List
Boards
Labels
Service Desk
Milestones
Merge Requests
16
Merge Requests
16
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Multimedia
Kdenlive
Commits
88168bf9
Commit
88168bf9
authored
Mar 04, 2018
by
Nicolas Carion
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
retain group type when splitting/undoing + tests
parent
2eb78bf4
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
129 additions
and
16 deletions
+129
-16
src/timeline2/model/groupsmodel.cpp
src/timeline2/model/groupsmodel.cpp
+47
-16
src/timeline2/model/groupsmodel.hpp
src/timeline2/model/groupsmodel.hpp
+3
-0
tests/groupstest.cpp
tests/groupstest.cpp
+79
-0
No files found.
src/timeline2/model/groupsmodel.cpp
View file @
88168bf9
...
...
@@ -69,25 +69,29 @@ void GroupsModel::downgradeToLeaf(int gid)
Fun
GroupsModel
::
groupItems_lambda
(
int
gid
,
const
std
::
unordered_set
<
int
>
&
ids
,
GroupType
type
,
int
parent
)
{
QWriteLocker
locker
(
&
m_lock
);
Q_ASSERT
(
type
!=
GroupType
::
Leaf
);
Q_ASSERT
(
ids
.
size
()
==
0
||
type
!=
GroupType
::
Leaf
);
return
[
gid
,
ids
,
parent
,
type
,
this
]()
{
qDebug
()
<<
"Create group "
<<
gid
<<
" with "
<<
ids
.
size
()
<<
"children and type"
<<
int
(
type
);
createGroupItem
(
gid
);
if
(
parent
!=
-
1
)
{
setGroup
(
gid
,
parent
);
}
promoteToGroup
(
gid
,
type
);
std
::
unordered_set
<
int
>
roots
;
std
::
transform
(
ids
.
begin
(),
ids
.
end
(),
std
::
inserter
(
roots
,
roots
.
begin
()),
[
&
](
int
id
)
{
return
getRootId
(
id
);
});
auto
ptr
=
m_parent
.
lock
();
if
(
!
ptr
)
Q_ASSERT
(
false
);
for
(
int
id
:
roots
)
{
setGroup
(
getRootId
(
id
),
gid
);
if
(
type
!=
GroupType
::
Selection
&&
ptr
->
isClip
(
id
))
{
QModelIndex
ix
=
ptr
->
makeClipIndexFromID
(
id
);
ptr
->
dataChanged
(
ix
,
ix
,
{
TimelineModel
::
GroupedRole
});
if
(
ids
.
size
()
>
0
)
{
promoteToGroup
(
gid
,
type
);
std
::
unordered_set
<
int
>
roots
;
std
::
transform
(
ids
.
begin
(),
ids
.
end
(),
std
::
inserter
(
roots
,
roots
.
begin
()),
[
&
](
int
id
)
{
return
getRootId
(
id
);
});
auto
ptr
=
m_parent
.
lock
();
if
(
!
ptr
)
Q_ASSERT
(
false
);
for
(
int
id
:
roots
)
{
setGroup
(
getRootId
(
id
),
gid
);
if
(
type
!=
GroupType
::
Selection
&&
ptr
->
isClip
(
id
))
{
QModelIndex
ix
=
ptr
->
makeClipIndexFromID
(
id
);
ptr
->
dataChanged
(
ix
,
ix
,
{
TimelineModel
::
GroupedRole
});
}
}
}
qDebug
()
<<
"End of creation. Type = "
<<
(
int
)
getType
(
gid
);
return
true
;
};
}
...
...
@@ -136,6 +140,7 @@ Fun GroupsModel::destructGroupItem_lambda(int id)
{
QWriteLocker
locker
(
&
m_lock
);
return
[
this
,
id
]()
{
qDebug
()
<<
"removing group "
<<
id
<<
" of type"
<<
int
(
getType
(
id
));
removeFromGroup
(
id
);
auto
ptr
=
m_parent
.
lock
();
if
(
!
ptr
)
Q_ASSERT
(
false
);
...
...
@@ -162,13 +167,22 @@ bool GroupsModel::destructGroupItem(int id, bool deleteOrphan, Fun &undo, Fun &r
Q_ASSERT
(
m_upLink
.
count
(
id
)
>
0
);
int
parent
=
m_upLink
[
id
];
auto
old_children
=
m_downLink
[
id
];
auto
old_type
=
GroupType
::
Selection
;
if
(
m_groupIds
.
count
(
id
)
>
0
)
{
old_type
=
m_groupIds
[
id
];
auto
old_type
=
getType
(
id
);
auto
old_parent_type
=
GroupType
::
Normal
;
if
(
parent
!=
-
1
)
{
old_parent_type
=
getType
(
parent
);
}
auto
operation
=
destructGroupItem_lambda
(
id
);
if
(
operation
())
{
auto
reverse
=
groupItems_lambda
(
id
,
old_children
,
old_type
,
parent
);
// we may need to reset the group of the parent
if
(
parent
!=
-
1
)
{
auto
setParent
=
[
&
,
old_parent_type
,
parent
]()
{
setType
(
parent
,
old_parent_type
);
return
true
;
};
PUSH_LAMBDA
(
setParent
,
reverse
);
}
UPDATE_UNDO_REDO
(
operation
,
reverse
,
undo
,
redo
);
if
(
parent
!=
-
1
&&
m_downLink
[
parent
].
empty
()
&&
deleteOrphan
)
{
return
destructGroupItem
(
parent
,
true
,
undo
,
redo
);
...
...
@@ -227,7 +241,7 @@ int GroupsModel::getSplitPartner(int id) const
std
::
unordered_set
<
int
>
leaves
=
getDirectChildren
(
groupId
);
if
(
leaves
.
size
()
!=
2
)
{
// clip does not have an AV split partner
qDebug
()
<<
"WRONG SPLIT GROUP SIZE: "
<<
leaves
.
size
();
qDebug
()
<<
"WRONG SPLIT GROUP SIZE: "
<<
leaves
.
size
();
return
-
1
;
}
for
(
const
int
&
child
:
leaves
)
{
...
...
@@ -401,6 +415,8 @@ bool GroupsModel::split(int id, const std::function<bool(int)> &criterion, Fun &
// We store the groups (ie the nodes) that are going to be part of the new tree
// Keys are temporary id (negative) and values are the set of children (true ids in the case of leaves and temporary ids for other nodes)
std
::
unordered_map
<
int
,
std
::
unordered_set
<
int
>>
new_groups
;
// We store also the target type of the new groups
std
::
unordered_map
<
int
,
GroupType
>
new_types
;
std
::
queue
<
int
>
queue
;
queue
.
push
(
id
);
int
tempId
=
-
10
;
...
...
@@ -415,6 +431,7 @@ bool GroupsModel::split(int id, const std::function<bool(int)> &criterion, Fun &
}
}
else
{
corresp
[
current
]
=
tempId
;
new_types
[
tempId
]
=
getType
(
current
);
if
(
m_upLink
[
current
]
!=
-
1
)
new_groups
[
corresp
[
m_upLink
[
current
]]].
insert
(
tempId
);
tempId
--
;
}
...
...
@@ -501,7 +518,8 @@ bool GroupsModel::split(int id, const std::function<bool(int)> &criterion, Fun &
for
(
int
elem
:
new_groups
[
selected
])
{
group
.
insert
(
elem
<
-
1
?
created_id
[
elem
]
:
elem
);
}
int
gid
=
groupItems
(
group
,
undo
,
redo
,
GroupType
::
Normal
,
true
);
Q_ASSERT
(
new_types
.
count
(
selected
)
!=
0
);
int
gid
=
groupItems
(
group
,
undo
,
redo
,
new_types
[
selected
],
true
);
created_id
[
selected
]
=
gid
;
new_groups
.
erase
(
selected
);
}
...
...
@@ -709,3 +727,16 @@ bool GroupsModel::fromJson(const QString &data)
}
return
ok
;
}
void
GroupsModel
::
setType
(
int
gid
,
GroupType
type
)
{
Q_ASSERT
(
m_groupIds
.
count
(
gid
)
!=
0
);
if
(
type
==
GroupType
::
Leaf
)
{
Q_ASSERT
(
m_downLink
[
gid
].
size
()
==
0
);
if
(
m_groupIds
.
count
(
gid
)
>
0
)
{
m_groupIds
.
erase
(
gid
);
}
}
else
{
m_groupIds
[
gid
]
=
type
;
}
}
src/timeline2/model/groupsmodel.hpp
View file @
88168bf9
...
...
@@ -192,6 +192,9 @@ protected:
/* @brief Transform a group node with no children into a leaf. This implies doing the deregistration to the timeline */
void
downgradeToLeaf
(
int
gid
);
/* @brief Simple type setter */
void
setType
(
int
gid
,
GroupType
type
);
private:
std
::
weak_ptr
<
TimelineItemModel
>
m_parent
;
...
...
tests/groupstest.cpp
View file @
88168bf9
...
...
@@ -1112,4 +1112,83 @@ TEST_CASE("Undo/redo", "[GroupsModel]")
redo
();
test_tree2
();
}
SECTION
(
"Splitting preserves group type"
)
{
Fun
undo
=
[]()
{
return
true
;
};
Fun
redo
=
[]()
{
return
true
;
};
REQUIRE
(
groups
.
m_upLink
.
size
()
==
0
);
// This is a dummy split criterion
auto
criterion
=
[](
int
a
)
{
return
a
%
2
==
0
;
};
// We create a very simple tree
for
(
int
i
=
0
;
i
<=
6
;
i
++
)
{
groups
.
createGroupItem
(
i
);
}
groups
.
setGroup
(
0
,
4
);
groups
.
setGroup
(
2
,
4
);
groups
.
setGroup
(
1
,
5
);
groups
.
setGroup
(
3
,
5
);
groups
.
setGroup
(
4
,
6
);
groups
.
setGroup
(
5
,
6
);
groups
.
setType
(
4
,
GroupType
::
AVSplit
);
groups
.
setType
(
5
,
GroupType
::
AVSplit
);
groups
.
setType
(
6
,
GroupType
::
Normal
);
auto
test_tree
=
[
&
]()
{
REQUIRE
(
groups
.
m_upLink
.
size
()
==
7
);
for
(
int
i
=
0
;
i
<=
6
;
i
++
)
{
REQUIRE
(
groups
.
getRootId
(
i
)
==
6
);
}
REQUIRE
(
groups
.
getSubtree
(
6
)
==
std
::
unordered_set
<
int
>
({
0
,
1
,
2
,
3
,
4
,
5
,
6
}));
REQUIRE
(
groups
.
getDirectChildren
(
0
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
1
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
2
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
3
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
4
)
==
std
::
unordered_set
<
int
>
({
0
,
2
}));
REQUIRE
(
groups
.
getDirectChildren
(
5
)
==
std
::
unordered_set
<
int
>
({
1
,
3
}));
REQUIRE
(
groups
.
getDirectChildren
(
6
)
==
std
::
unordered_set
<
int
>
({
4
,
5
}));
REQUIRE
(
groups
.
getType
(
4
)
==
GroupType
::
AVSplit
);
REQUIRE
(
groups
.
getType
(
5
)
==
GroupType
::
AVSplit
);
REQUIRE
(
groups
.
getType
(
6
)
==
GroupType
::
Normal
);
};
test_tree
();
qDebug
()
<<
" done testing"
;
REQUIRE
(
groups
.
split
(
6
,
criterion
,
undo
,
redo
));
qDebug
()
<<
" done spliting"
;
auto
test_tree2
=
[
&
]()
{
// REQUIRE(groups.m_upLink.size() == 6);
int
r1
=
groups
.
getRootId
(
0
);
int
r2
=
groups
.
getRootId
(
1
);
bool
ok
=
r1
==
4
||
r2
==
5
;
REQUIRE
(
ok
);
REQUIRE
(
groups
.
getRootId
(
2
)
==
r1
);
REQUIRE
(
groups
.
getRootId
(
3
)
==
r2
);
REQUIRE
(
groups
.
getSubtree
(
r1
)
==
std
::
unordered_set
<
int
>
({
r1
,
0
,
2
}));
REQUIRE
(
groups
.
getSubtree
(
r2
)
==
std
::
unordered_set
<
int
>
({
r2
,
1
,
3
}));
REQUIRE
(
groups
.
getDirectChildren
(
0
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
1
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
2
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
3
)
==
std
::
unordered_set
<
int
>
({}));
REQUIRE
(
groups
.
getDirectChildren
(
r1
)
==
std
::
unordered_set
<
int
>
({
0
,
2
}));
REQUIRE
(
groups
.
getDirectChildren
(
r2
)
==
std
::
unordered_set
<
int
>
({
1
,
3
}));
REQUIRE
(
groups
.
getType
(
r1
)
==
GroupType
::
AVSplit
);
REQUIRE
(
groups
.
getType
(
r2
)
==
GroupType
::
AVSplit
);
};
test_tree2
();
undo
();
test_tree
();
redo
();
test_tree2
();
undo
();
test_tree
();
redo
();
test_tree2
();
REQUIRE_FALSE
(
true
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment