Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edit plugin logic: Regression from previous PR; incorrect diffs #2668

Merged
merged 6 commits into from
Aug 25, 2017

Conversation

wisp3rwind
Copy link
Member

Contains two fixes:

  • Turns out I introduced a regression in Fix the edit plugin displaying bogus data or even crashing on re-imports #2659 due to incorrectly assuming objects to have a valid id when object._db is set. Crashed beets when re-tagging albums (since the yaml file would contain id: '' which can obviously not be coerced to an integer)
  • The plugin shows diffs against different initial states in first and subsequent edits, see the commit message for more detail.

wordofglass added 2 commits August 24, 2017 13:40
Previously, if continuing to edit (i.e. invoking the $EDITOR) multiple
times in one invocation of EditPlugin.edit_objects, the plugin would
reload the old state from the file tags. The initial 'old state' is
usually only loaded from the database, though. As a consequence, if
database and tags were not in sync, the diffs from first and all
subsequent edits could differ unexpectedly.
@wisp3rwind
Copy link
Member Author

Ok, this still doesn't work because deepcopy doesn't like sqlite3.Connection objects. Do we have a method to safely copy LibModels in some place?

@wisp3rwind
Copy link
Member Author

Should be fine now, I ended up implementing Model.copy().

wordofglass added 3 commits August 24, 2017 15:03
…box#2659

Deepcopying fails if a database is attached as Model._db since the
sqlite connection objects it contains are non-copyable
Copy link
Member

@sampsyo sampsyo left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aha; good catch. Adding a copy method seems like a reasonable fix—and you're right that deepcopy was the wrong thing. (In fact, it's surprising that it stuck around for so long in the edit plugin…)

I have a couple of documentation suggestions; then this should be good to go.

@@ -302,9 +301,14 @@ def edit_objects(self, objs, fields):
elif choice == u'c': # Cancel.
return False
elif choice == u'e': # Keep editing.
# Reset the temporary changes to the objects.
# Reset the temporary changes to the objects. I we have a
# deepcopy from above, use that, else reload from the
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Perhaps just call it a "copy" here, since we're not using deepcopy anymore.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Right, that's a leftover from before, thanks for spotting it!

"""Create a semi-deep copy of the item. In particular, the _db object
is not duplicated. A simple copy.deepcopy wouldn't work due to the
sqlite objects in _db.
"""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I know this is extremely low-level, but sometimes I like structuring docstrings so there is a quick summary at the top followed by more detail after a blank line. This can help when navigating a big codebase for the first time. For example, I might suggest:

"""Create a copy of the model object.

The field values and other state is duplicated, but the new copy
remains associated with the same database as the old object.
(A simple `copy.deepcopy` will not work because it would try to
duplicate the SQLite connection.)
"""

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍

@wisp3rwind
Copy link
Member Author

Well, it could persist because the plugin didn't copy any items with a database connection, but let ui.show_model_changes retrieve those anew from the database. That's still what happens most of the time, the only exception is when re-importing an album.

@wisp3rwind wisp3rwind merged commit 7f12cc0 into beetbox:master Aug 25, 2017
wisp3rwind pushed a commit that referenced this pull request Aug 25, 2017
Edit plugin logic: Regression from previous PR; incorrect diffs
@wisp3rwind wisp3rwind deleted the edit_logic branch August 25, 2017 14:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants