hydrus/include/ClientGUITagSuggestions.py

487 lines
15 KiB
Python
Raw Normal View History

2016-08-03 22:15:54 +00:00
import ClientConstants as CC
import ClientData
import ClientGUICommon
2016-11-09 23:13:22 +00:00
import ClientGUIDialogs
2017-02-01 21:11:17 +00:00
import ClientGUIListBoxes
2016-11-16 20:21:43 +00:00
import ClientGUIParsing
2016-11-09 23:13:22 +00:00
import ClientParsing
2016-08-03 22:15:54 +00:00
import ClientSearch
2016-11-16 20:21:43 +00:00
import ClientThreading
2016-08-03 22:15:54 +00:00
import collections
import HydrusConstants as HC
2016-11-16 20:21:43 +00:00
import HydrusData
2017-05-10 21:33:58 +00:00
import HydrusGlobals as HG
2016-11-09 23:13:22 +00:00
import HydrusSerialisable
2016-08-03 22:15:54 +00:00
import wx
2017-02-01 21:11:17 +00:00
class ListBoxTagsSuggestionsFavourites( ClientGUIListBoxes.ListBoxTagsStrings ):
2016-08-03 22:15:54 +00:00
2016-09-21 19:54:04 +00:00
def __init__( self, parent, activate_callable, sort_tags = True ):
2016-08-03 22:15:54 +00:00
2017-02-01 21:11:17 +00:00
ClientGUIListBoxes.ListBoxTagsStrings.__init__( self, parent, sort_tags = sort_tags )
2016-08-03 22:15:54 +00:00
self._activate_callable = activate_callable
2017-05-10 21:33:58 +00:00
width = HG.client_controller.GetNewOptions().GetInteger( 'suggested_tags_width' )
2016-11-09 23:13:22 +00:00
if width is not None:
self.SetMinSize( ( width, -1 ) )
2016-08-03 22:15:54 +00:00
def _Activate( self ):
if len( self._selected_terms ) > 0:
tags = set( self._selected_terms )
self._activate_callable( tags )
2016-11-16 20:21:43 +00:00
def ActivateAll( self ):
2016-11-23 20:37:53 +00:00
self._activate_callable( self.GetTags(), only_add = True )
2016-11-16 20:21:43 +00:00
2016-11-09 23:13:22 +00:00
'''
# Maybe reinclude this if per-column autoresizing is desired and not completely buggy
2016-08-03 22:15:54 +00:00
def SetTags( self, tags ):
2017-02-01 21:11:17 +00:00
ClientGUIListBoxes.ListBoxTagsStrings.SetTags( self, tags )
2016-08-03 22:15:54 +00:00
2017-05-10 21:33:58 +00:00
width = HG.client_controller.GetNewOptions().GetInteger( 'suggested_tags_width' )
2016-08-03 22:15:54 +00:00
if width is None:
if len( self._ordered_strings ) > 0:
dc = wx.MemoryDC( self._client_bmp )
dc.SetFont( wx.SystemSettings.GetFont( wx.SYS_DEFAULT_GUI_FONT ) )
width = max( ( dc.GetTextExtent( s )[0] for s in self._ordered_strings ) )
self.SetMinClientSize( ( width + 2 * self.TEXT_X_PADDING, -1 ) )
else:
self.SetMinSize( ( width, -1 ) )
wx.PostEvent( self.GetParent(), CC.SizeChangedEvent( -1 ) )
2016-11-09 23:13:22 +00:00
'''
2017-03-22 22:38:15 +00:00
class ListBoxTagsSuggestionsRelated( ClientGUIListBoxes.ListBoxTagsPredicates ):
2016-08-03 22:15:54 +00:00
def __init__( self, parent, activate_callable ):
2017-02-01 21:11:17 +00:00
ClientGUIListBoxes.ListBoxTags.__init__( self, parent )
2016-08-03 22:15:54 +00:00
self._activate_callable = activate_callable
2017-05-10 21:33:58 +00:00
width = HG.client_controller.GetNewOptions().GetInteger( 'suggested_tags_width' )
2016-08-03 22:15:54 +00:00
2016-11-09 23:13:22 +00:00
self.SetMinSize( ( width, -1 ) )
2016-08-03 22:15:54 +00:00
def _Activate( self ):
if len( self._selected_terms ) > 0:
tags = { predicate.GetValue() for predicate in self._selected_terms }
self._activate_callable( tags )
2017-03-29 19:39:34 +00:00
def _GetTextFromTerm( self, term ):
predicate = term
return predicate.GetUnicode( with_count = False )
2016-08-03 22:15:54 +00:00
def SetPredicates( self, predicates ):
2017-03-22 22:38:15 +00:00
self._Clear()
2016-08-03 22:15:54 +00:00
for predicate in predicates:
2017-03-22 22:38:15 +00:00
self._AppendTerm( predicate )
2016-08-03 22:15:54 +00:00
2017-03-22 22:38:15 +00:00
self._DataHasChanged()
2016-08-03 22:15:54 +00:00
2016-08-31 19:55:14 +00:00
class RecentTagsPanel( wx.Panel ):
def __init__( self, parent, service_key, activate_callable, canvas_key = None ):
wx.Panel.__init__( self, parent )
self._service_key = service_key
self._canvas_key = canvas_key
2017-05-10 21:33:58 +00:00
self._new_options = HG.client_controller.GetNewOptions()
2016-08-31 19:55:14 +00:00
vbox = wx.BoxSizer( wx.VERTICAL )
clear_button = wx.Button( self, label = 'clear' )
clear_button.Bind( wx.EVT_BUTTON, self.EventClear )
2016-09-21 19:54:04 +00:00
self._recent_tags = ListBoxTagsSuggestionsFavourites( self, activate_callable, sort_tags = False )
2016-08-31 19:55:14 +00:00
vbox.AddF( clear_button, CC.FLAGS_EXPAND_PERPENDICULAR )
vbox.AddF( self._recent_tags, CC.FLAGS_EXPAND_BOTH_WAYS )
self.SetSizer( vbox )
self._RefreshRecentTags()
if self._canvas_key is not None:
2017-05-10 21:33:58 +00:00
HG.client_controller.sub( self, 'CanvasHasNewMedia', 'canvas_new_display_media' )
2016-08-31 19:55:14 +00:00
def _RefreshRecentTags( self ):
2017-05-10 21:33:58 +00:00
recent_tags = HG.client_controller.Read( 'recent_tags', self._service_key )
2016-08-31 19:55:14 +00:00
self._recent_tags.SetTags( recent_tags )
def CanvasHasNewMedia( self, canvas_key, new_media_singleton ):
if canvas_key == self._canvas_key:
self._RefreshRecentTags()
def EventClear( self, event ):
2017-05-10 21:33:58 +00:00
HG.client_controller.WriteSynchronous( 'push_recent_tags', self._service_key, None )
2016-08-31 19:55:14 +00:00
self._RefreshRecentTags()
2016-08-03 22:15:54 +00:00
class RelatedTagsPanel( wx.Panel ):
2016-08-10 19:04:08 +00:00
def __init__( self, parent, service_key, media, activate_callable, canvas_key = None ):
2016-08-03 22:15:54 +00:00
wx.Panel.__init__( self, parent )
self._service_key = service_key
self._media = media
2016-08-10 19:04:08 +00:00
self._canvas_key = canvas_key
2016-08-03 22:15:54 +00:00
2017-05-10 21:33:58 +00:00
self._new_options = HG.client_controller.GetNewOptions()
2016-08-03 22:15:54 +00:00
vbox = wx.BoxSizer( wx.VERTICAL )
2016-08-10 19:04:08 +00:00
button_2 = wx.Button( self, label = 'medium' )
2016-08-03 22:15:54 +00:00
button_2.Bind( wx.EVT_BUTTON, self.EventSuggestedRelatedTags2 )
button_2.SetMinSize( ( 30, -1 ) )
2016-08-10 19:04:08 +00:00
button_3 = wx.Button( self, label = 'thorough' )
2016-08-03 22:15:54 +00:00
button_3.Bind( wx.EVT_BUTTON, self.EventSuggestedRelatedTags3 )
button_3.SetMinSize( ( 30, -1 ) )
self._related_tags = ListBoxTagsSuggestionsRelated( self, activate_callable )
button_hbox = wx.BoxSizer( wx.HORIZONTAL )
button_hbox.AddF( button_2, CC.FLAGS_EXPAND_SIZER_BOTH_WAYS )
button_hbox.AddF( button_3, CC.FLAGS_EXPAND_SIZER_BOTH_WAYS )
vbox.AddF( button_hbox, CC.FLAGS_EXPAND_PERPENDICULAR )
vbox.AddF( self._related_tags, CC.FLAGS_EXPAND_BOTH_WAYS )
self.SetSizer( vbox )
2016-08-10 19:04:08 +00:00
if self._canvas_key is not None:
2017-05-10 21:33:58 +00:00
HG.client_controller.sub( self, 'CanvasHasNewMedia', 'canvas_new_display_media' )
2016-08-10 19:04:08 +00:00
self._QuickSuggestedRelatedTags()
2016-08-03 22:15:54 +00:00
def _FetchRelatedTags( self, max_time_to_take ):
( m, ) = self._media
hash = m.GetHash()
( current_tags_to_count, deleted_tags_to_count, pending_tags_to_count, petitioned_tags_to_count ) = ClientData.GetMediasTagCount( self._media, tag_service_key = self._service_key, collapse_siblings = False )
tags_to_count = collections.Counter()
tags_to_count.update( current_tags_to_count )
tags_to_count.update( pending_tags_to_count )
search_tags = set( tags_to_count.keys() )
max_results = 100
2017-05-10 21:33:58 +00:00
predicates = HG.client_controller.Read( 'related_tags', self._service_key, hash, search_tags, max_results, max_time_to_take )
2016-08-03 22:15:54 +00:00
predicates = ClientSearch.SortPredicates( predicates )
self._related_tags.SetPredicates( predicates )
2016-08-10 19:04:08 +00:00
def _QuickSuggestedRelatedTags( self ):
2016-08-03 22:15:54 +00:00
max_time_to_take = self._new_options.GetInteger( 'related_tags_search_1_duration_ms' ) / 1000.0
self._FetchRelatedTags( max_time_to_take )
2016-08-10 19:04:08 +00:00
def CanvasHasNewMedia( self, canvas_key, new_media_singleton ):
if canvas_key == self._canvas_key:
self._media = ( new_media_singleton.Duplicate(), )
self._QuickSuggestedRelatedTags()
2016-08-03 22:15:54 +00:00
def EventSuggestedRelatedTags2( self, event ):
max_time_to_take = self._new_options.GetInteger( 'related_tags_search_2_duration_ms' ) / 1000.0
self._FetchRelatedTags( max_time_to_take )
def EventSuggestedRelatedTags3( self, event ):
max_time_to_take = self._new_options.GetInteger( 'related_tags_search_3_duration_ms' ) / 1000.0
self._FetchRelatedTags( max_time_to_take )
2016-11-09 23:13:22 +00:00
class FileLookupScriptTagsPanel( wx.Panel ):
2016-11-16 20:21:43 +00:00
def __init__( self, parent, service_key, media, activate_callable, canvas_key = None ):
2016-11-09 23:13:22 +00:00
wx.Panel.__init__( self, parent )
self._service_key = service_key
self._media = media
2016-11-16 20:21:43 +00:00
self._canvas_key = canvas_key
2016-11-09 23:13:22 +00:00
2017-05-10 21:33:58 +00:00
scripts = HG.client_controller.Read( 'serialisable_named', HydrusSerialisable.SERIALISABLE_TYPE_PARSE_ROOT_FILE_LOOKUP )
2016-11-09 23:13:22 +00:00
2016-11-16 20:21:43 +00:00
script_names_to_scripts = { script.GetName() : script for script in scripts }
2016-11-09 23:13:22 +00:00
self._script_choice = ClientGUICommon.BetterChoice( self )
2016-11-16 20:21:43 +00:00
for ( name, script ) in script_names_to_scripts.items():
2016-11-09 23:13:22 +00:00
self._script_choice.Append( script.GetName(), script )
2017-05-10 21:33:58 +00:00
new_options = HG.client_controller.GetNewOptions()
2016-11-09 23:13:22 +00:00
favourite_file_lookup_script = new_options.GetNoneableString( 'favourite_file_lookup_script' )
2016-11-16 20:21:43 +00:00
if favourite_file_lookup_script in script_names_to_scripts:
self._script_choice.SelectClientData( script_names_to_scripts[ favourite_file_lookup_script ] )
else:
self._script_choice.Select( 0 )
2016-11-09 23:13:22 +00:00
fetch_button = ClientGUICommon.BetterButton( self, 'fetch tags', self.FetchTags )
2016-11-16 20:21:43 +00:00
self._script_management = ClientGUIParsing.ScriptManagementControl( self )
2016-11-09 23:13:22 +00:00
self._tags = ListBoxTagsSuggestionsFavourites( self, activate_callable, sort_tags = True )
2016-11-16 20:21:43 +00:00
self._add_all = ClientGUICommon.BetterButton( self, 'add all', self._tags.ActivateAll )
2016-11-09 23:13:22 +00:00
vbox = wx.BoxSizer( wx.VERTICAL )
vbox.AddF( self._script_choice, CC.FLAGS_EXPAND_PERPENDICULAR )
vbox.AddF( fetch_button, CC.FLAGS_EXPAND_PERPENDICULAR )
2016-11-16 20:21:43 +00:00
vbox.AddF( self._script_management, CC.FLAGS_EXPAND_PERPENDICULAR )
vbox.AddF( self._add_all, CC.FLAGS_EXPAND_PERPENDICULAR )
2016-11-09 23:13:22 +00:00
vbox.AddF( self._tags, CC.FLAGS_EXPAND_BOTH_WAYS )
2016-11-16 20:21:43 +00:00
self._SetTags( [] )
2016-11-09 23:13:22 +00:00
self.SetSizer( vbox )
2016-11-16 20:21:43 +00:00
if self._canvas_key is not None:
2017-05-10 21:33:58 +00:00
HG.client_controller.sub( self, 'CanvasHasNewMedia', 'canvas_new_display_media' )
2016-11-16 20:21:43 +00:00
def _SetTags( self, tags ):
self._tags.SetTags( tags )
if len( tags ) == 0:
self._add_all.Disable()
else:
self._add_all.Enable()
def CanvasHasNewMedia( self, canvas_key, new_media_singleton ):
if canvas_key == self._canvas_key:
self._media = ( new_media_singleton.Duplicate(), )
self._SetTags( [] )
2016-11-09 23:13:22 +00:00
def FetchTags( self ):
script = self._script_choice.GetChoice()
if script.UsesUserInput():
message = 'Enter the custom input for the file lookup script.'
with ClientGUIDialogs.DialogTextEntry( self, message ) as dlg:
if dlg.ShowModal() != wx.ID_OK:
return
file_identifier = dlg.GetValue()
else:
( m, ) = self._media
file_identifier = script.ConvertMediaToFileIdentifier( m )
2016-11-16 20:21:43 +00:00
stop_time = HydrusData.GetNow() + 30
job_key = ClientThreading.JobKey( cancellable = True, stop_time = stop_time )
self._script_management.SetJobKey( job_key )
desired_content = 'all'
2017-05-10 21:33:58 +00:00
HG.client_controller.CallToThread( self.THREADFetchTags, script, job_key, file_identifier, desired_content )
2016-11-16 20:21:43 +00:00
def THREADFetchTags( self, script, job_key, file_identifier, desired_content ):
content_results = script.DoQuery( job_key, file_identifier, desired_content )
2016-11-09 23:13:22 +00:00
tags = ClientParsing.GetTagsFromContentResults( content_results )
2016-11-16 20:21:43 +00:00
wx.CallAfter( self._SetTags, tags )
2016-11-09 23:13:22 +00:00
2016-08-03 22:15:54 +00:00
class SuggestedTagsPanel( wx.Panel ):
2016-08-10 19:04:08 +00:00
def __init__( self, parent, service_key, media, activate_callable, canvas_key = None ):
2016-08-03 22:15:54 +00:00
wx.Panel.__init__( self, parent )
self._service_key = service_key
self._media = media
2016-08-10 19:04:08 +00:00
self._canvas_key = canvas_key
2016-08-03 22:15:54 +00:00
2017-05-10 21:33:58 +00:00
self._new_options = HG.client_controller.GetNewOptions()
2016-08-03 22:15:54 +00:00
2016-11-09 23:13:22 +00:00
layout_mode = self._new_options.GetNoneableString( 'suggested_tags_layout' )
if layout_mode == 'notebook':
notebook = wx.Notebook( self )
panel_parent = notebook
else:
panel_parent = self
2016-08-03 22:15:54 +00:00
2016-11-09 23:13:22 +00:00
panels = []
2016-08-03 22:15:54 +00:00
favourites = self._new_options.GetSuggestedTagsFavourites( service_key )
if len( favourites ) > 0:
2016-11-09 23:13:22 +00:00
favourite_tags = ListBoxTagsSuggestionsFavourites( panel_parent, activate_callable )
2016-08-03 22:15:54 +00:00
favourite_tags.SetTags( favourites )
2016-11-09 23:13:22 +00:00
panels.append( ( 'favourites', favourite_tags ) )
2016-08-03 22:15:54 +00:00
if self._new_options.GetBoolean( 'show_related_tags' ) and len( media ) == 1:
2016-11-09 23:13:22 +00:00
related_tags = RelatedTagsPanel( panel_parent, service_key, media, activate_callable, canvas_key = self._canvas_key )
panels.append( ( 'related', related_tags ) )
2016-08-03 22:15:54 +00:00
2016-11-09 23:13:22 +00:00
if self._new_options.GetBoolean( 'show_file_lookup_script_tags' ) and len( media ) == 1:
2016-08-03 22:15:54 +00:00
2016-11-16 20:21:43 +00:00
file_lookup_script_tags = FileLookupScriptTagsPanel( panel_parent, service_key, media, activate_callable, canvas_key = self._canvas_key )
2016-11-09 23:13:22 +00:00
panels.append( ( 'file lookup scripts', file_lookup_script_tags ) )
2016-08-03 22:15:54 +00:00
2016-08-31 19:55:14 +00:00
if self._new_options.GetNoneableInteger( 'num_recent_tags' ) is not None:
2016-11-09 23:13:22 +00:00
recent_tags = RecentTagsPanel( panel_parent, service_key, activate_callable, canvas_key = self._canvas_key )
2016-08-31 19:55:14 +00:00
2016-11-09 23:13:22 +00:00
panels.append( ( 'recent', recent_tags ) )
2016-08-31 19:55:14 +00:00
2016-11-09 23:13:22 +00:00
if layout_mode == 'notebook':
hbox = wx.BoxSizer( wx.HORIZONTAL )
for ( name, panel ) in panels:
notebook.AddPage( panel, name )
hbox.AddF( notebook, CC.FLAGS_EXPAND_BOTH_WAYS )
self.SetSizer( hbox )
elif layout_mode == 'columns':
hbox = wx.BoxSizer( wx.HORIZONTAL )
for ( name, panel ) in panels:
hbox.AddF( panel, CC.FLAGS_EXPAND_PERPENDICULAR )
self.SetSizer( hbox )
2016-08-03 22:15:54 +00:00
2016-11-09 23:13:22 +00:00
if len( panels ) == 0:
2016-08-03 22:15:54 +00:00
self.Hide()
2017-02-01 21:11:17 +00:00