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

new generic TrackInfo and AlbumInfo #2654

Closed
wants to merge 6 commits into from

Conversation

gabrielhdt
Copy link

@gabrielhdt gabrielhdt commented Aug 13, 2017

TrackInfo and AlbumInfo inheritate from class ItemInfo, which behaves
like a dict and is backward compatible regarding attributes management.
apply_metadata function has been updated consequently, favouring dict
like item access more than attributes. Apply_metadata isn't general yet.
#1547

TrackInfo and AlbumInfo inheritate from class ItemInfo, which behaves
like a dict and is backward compatible regarding atributes management.
apply_metadata function has been updated consequently, favouring dict
like item access more than attributes
@mention-bot
Copy link

@gabrielhdt, thanks for your PR! By analyzing the history of the files in this pull request, we identified @sampsyo, @jrobeson and @dosoe to be potential reviewers.

gabrielhdt added 2 commits August 13, 2017 18:40
Updated calls to TrackInfo and AlbmInfo using keywords only arguments,
implemented reduce methods for TrackInfo and AlbumInfo for
copy.deepcopy (use also track_id and album_id) beetbox#1547
On the way to become generic. Used dictionnaries to map item attributes
to ItemInfo keys

def __reduce__(self):
"""Used by :py:func:`copy.deepcopy`"""
return self['album_id']
Copy link
Contributor

Choose a reason for hiding this comment

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

That's what I was looking for! How did you know this is the missing part for deepcopy?

Copy link
Author

Choose a reason for hiding this comment

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

I looked into copy.deepcopy ... you can see it on the pickle doc too:
https://docs.python.org/2/library/pickle.html#object.reduce

'artist_sort': 'artist_sort',
'artist_credit': 'artist_credit',
'mb_artistid': 'artist_id',
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Why not just make a loop over all tags? Then when one adds a tag he doesn't need to add something here.

Copy link
Author

Choose a reason for hiding this comment

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

What you suggest must be eventually done. For the moment I adapted the current process to behave in a 'generic-friendly' way. I will come back to apply_metadata after having edited the track_info function of mb.py to make it capable of copying tags from recording object to TrackInfo.

@dosoe
Copy link
Contributor

dosoe commented Aug 14, 2017

Thanks! Then I will just kill my own try (that failed on deepcopy) here on #2650

ItemInfo populated using a model (the alias dict) which is parsed to
automatically set attributes.
@gabrielhdt
Copy link
Author

gabrielhdt commented Sep 2, 2017

It seems that perfect flexibility (i.e. dumping directly musicbrainz data to tags) isn't possible, due to the recursive architecture of musicbrainz relations (relations that have relations, which can be seen in musicbrainzngs dict as they are recursive) which can't be applied to the media tags.

Therefore, I chose to base the tagging process on the parsing of a mapping. The mapping reproduces the architecture of the musicbrainzngs dict and maps the musicbrainzngs dict key to the tag key (the ItemInfo attribute/key). Flexibility is improved as the mapping should eventually be stored in a json or yaml file, which will have to be updated to follow musicbrainz database schemes updates, one shouldn't need to edit python code to add an attribute, only update model.

Tags that need processing are treated separately (e.g. track index).

Old behaviour must be reproduced (to avoid failures in unit tests)
'arranger': 'arranger',
'media': 'media',
'disctitle': 'disctitle',
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Hi! Thanks for all the work, it looks awesome. A question: will it be necessary for each new tag to add a corresponding line to the mapping?

Copy link
Author

Choose a reason for hiding this comment

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

Yes it will. But that shouldn't be a problem, since the only task will eventually be to add a line to a json/yaml file.

Special function have to be implemented, database management must be
improved (e.g. dynamically adding columns)
@dosoe
Copy link
Contributor

dosoe commented Sep 5, 2017

I'm wondering (I didn't try it out) how it works if there are several albumartists: what is currently done is that the names of all the artists are appended in a string, does something similar happen here or does he just take the last one?

@jtpavlock
Copy link
Contributor

@gabrielhdt is there any interest in continuing this?

@gabrielhdt
Copy link
Author

Hi @jtpavlock, I don't really know, is it still relevant, and aren't there too many merge conflicts? On the part of the remaining code, if I remember correctly, we have to tinker with the database. I don't think I'll continue on this (even though I still use the software, so I'm still sort of interested). But I think that we should agree first on what we want: it has emerged from discussions with @dosoe that the needs differ in function of the people (which is normal), while I was more targeting for a system that mirrors musicbrainz' data on the files I have, @dosoe wanted to be able to add musics that should not be referenced into musicbrainz.

@dosoe
Copy link
Contributor

dosoe commented Jul 10, 2020

Hi! I implemented flexible tags in #3568 , now we just need to get the actual tags. I have a PR in progress that does this for performers (but could easily be extended to places and dates) here: #3589 . That one is still work in progress (and will need quite some changes based on comments).

@gabrielhdt
Copy link
Author

Ah, that's nice, thank you @dosoe! I guess this pull request is really out of date then.

@dosoe
Copy link
Contributor

dosoe commented Jul 10, 2020

Now that flexible tags have been implemented, it's much easier to do.

@jtpavlock
Copy link
Contributor

Awesome, in that case I'll close this in favor of #3568

Thanks for your work on this @gabrielhdt! Sorry we never got to see it all the way through.

@jtpavlock jtpavlock closed this Jul 10, 2020
@gabrielhdt gabrielhdt deleted the iss1547 branch July 12, 2020 11:33
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.

4 participants