Beispiel #1
0
    def PendURLs(self, urls, service_keys_to_tags=None):

        if service_keys_to_tags is None:

            service_keys_to_tags = ClientTags.ServiceKeysToTags()

        with self._lock:

            urls = [u for u in urls if len(u) > 1
                    ]  # > _1_ to take out the occasional whitespace

            file_seeds = []

            gallery_seeds = []

            for url in urls:

                try:

                    url_class = HG.client_controller.network_engine.domain_manager.GetURLClass(
                        url)

                except HydrusExceptions.URLClassException:

                    continue

                if url_class is None or url_class.GetURLType() in (
                        HC.URL_TYPE_FILE, HC.URL_TYPE_POST):

                    file_seed = ClientImportFileSeeds.FileSeed(
                        ClientImportFileSeeds.FILE_SEED_TYPE_URL, url)

                    file_seed.SetFixedServiceKeysToTags(service_keys_to_tags)

                    file_seeds.append(file_seed)

                else:

                    can_generate_more_pages = False

                    gallery_seed = ClientImportGallerySeeds.GallerySeed(
                        url, can_generate_more_pages=can_generate_more_pages)

                    gallery_seed.SetFixedServiceKeysToTags(
                        service_keys_to_tags)

                    gallery_seeds.append(gallery_seed)

            if len(gallery_seeds) > 0:

                self._gallery_seed_log.AddGallerySeeds(gallery_seeds)

                ClientImporting.WakeRepeatingJob(self._gallery_repeating_job)

            if len(file_seeds) > 0:

                self._file_seed_cache.AddFileSeeds(file_seeds)

                ClientImporting.WakeRepeatingJob(self._files_repeating_job)
Beispiel #2
0
    def PausePlay(self):

        with self._lock:

            self._paused = not self._paused

            ClientImporting.WakeRepeatingJob(self._files_repeating_job)
            ClientImporting.WakeRepeatingJob(self._gallery_repeating_job)
Beispiel #3
0
 def PausePlay( self ):
     
     with self._lock:
         
         self._paused = not self._paused
         
         ClientImporting.WakeRepeatingJob( self._files_repeating_job )
         ClientImporting.WakeRepeatingJob( self._gallery_repeating_job )
         
         self._SerialisableChangeMade()
Beispiel #4
0
    def NotifyFileSeedsUpdated(self, file_seed_cache_key, file_seeds):

        if file_seed_cache_key == self._file_seed_cache.GetFileSeedCacheKey():

            ClientImporting.WakeRepeatingJob(self._files_repeating_job)

            self._SerialisableChangeMade()
Beispiel #5
0
 def NotifyGallerySeedsUpdated( self, gallery_seed_log_key, gallery_seeds ):
     
     if gallery_seed_log_key == self._gallery_seed_log.GetGallerySeedLogKey():
         
         ClientImporting.WakeRepeatingJob( self._gallery_repeating_job )
         
         self._SerialisableChangeMade()
Beispiel #6
0
    def PausePlayQueue(self):

        with self._lock:

            self._queue_paused = not self._queue_paused

            ClientImporting.WakeRepeatingJob(self._queue_repeating_job)
Beispiel #7
0
    def PausePlayQueue(self):

        with self._lock:

            self._queue_paused = not self._queue_paused

            ClientImporting.WakeRepeatingJob(self._queue_repeating_job)

            self._SerialisableChangeMade()
Beispiel #8
0
    def PendJob(self, job):

        with self._lock:

            if job not in self._pending_jobs:

                self._pending_jobs.append(job)

                ClientImporting.WakeRepeatingJob(self._queue_repeating_job)
Beispiel #9
0
 def PendJob( self, job ):
     
     with self._lock:
         
         if job not in self._pending_jobs:
             
             self._pending_jobs.append( job )
             
             ClientImporting.WakeRepeatingJob( self._gallery_repeating_job )
             
             self._SerialisableChangeMade()
Beispiel #10
0
    def SetCheckerOptions(self, checker_options):

        with self._lock:

            self._checker_options = checker_options

            self._UpdateNextCheckTime()

            self._UpdateFileVelocityStatus()

            ClientImporting.WakeRepeatingJob(self._checker_repeating_job)
Beispiel #11
0
    def PausePlayChecking(self):

        with self._lock:

            if self._checking_paused and self._IsDead():

                return  # watcher is dead, so don't unpause until a checknow event

            else:

                self._checking_paused = not self._checking_paused

                ClientImporting.WakeRepeatingJob(self._checker_repeating_job)
Beispiel #12
0
    def CheckNow(self):

        with self._lock:

            self._check_now = True

            self._checking_paused = False

            self._no_work_until = 0
            self._no_work_until_reason = ''

            self._checking_status = ClientImporting.CHECKER_STATUS_OK

            self._UpdateNextCheckTime()

            ClientImporting.WakeRepeatingJob(self._checker_repeating_job)
Beispiel #13
0
    def SetURL(self, url):

        if url is None:

            url = ''

        if url != '':

            try:

                url = HG.client_controller.network_engine.domain_manager.NormaliseURL(
                    url)

            except HydrusExceptions.URLClassException:

                url = ''

        with self._lock:

            self._url = url

            ClientImporting.WakeRepeatingJob(self._checker_repeating_job)
Beispiel #14
0
 def _WorkOnGallery( self ):
     
     if len( self._pending_jobs ) > 0:
         
         with self._lock:
             
             ( url, simple_downloader_formula ) = self._pending_jobs.pop( 0 )
             
             self._gallery_status = 'checking ' + url
             
         
         error_occurred = False
         
         gallery_seed_status = CC.STATUS_ERROR
         parser_status = 'job not completed'
         
         gallery_seed = ClientImportGallerySeeds.GallerySeed( url, can_generate_more_pages = False )
         
         try:
             
             self._gallery_seed_log.AddGallerySeeds( ( gallery_seed, ) )
             
             network_job = self._NetworkJobFactory( 'GET', url )
             
             network_job.OverrideBandwidth( 30 )
             
             HG.client_controller.network_engine.AddJob( network_job )
             
             with self._PageNetworkJobPresentationContextFactory( network_job ):
                 
                 network_job.WaitUntilDone()
                 
             
             parsing_text = network_job.GetContentText()
             
             #
             
             parsing_context = {}
             
             parsing_context[ 'url' ] = url
             
             parsing_formula = simple_downloader_formula.GetFormula()
             
             file_seeds = []
             
             for parsed_text in parsing_formula.Parse( parsing_context, parsing_text ):
                 
                 try:
                     
                     file_url = urllib.parse.urljoin( url, parsed_text )
                     
                     file_seed = ClientImportFileSeeds.FileSeed( ClientImportFileSeeds.FILE_SEED_TYPE_URL, file_url )
                     
                     file_seed.SetReferralURL( url )
                     
                     file_seeds.append( file_seed )
                     
                 except:
                     
                     continue
                     
                 
             
             num_new = self._file_seed_cache.AddFileSeeds( file_seeds )
             
             if num_new > 0:
                 
                 ClientImporting.WakeRepeatingJob( self._files_repeating_job )
                 
             
             parser_status = 'page checked OK with formula "' + simple_downloader_formula.GetName() + '" - ' + HydrusData.ToHumanInt( num_new ) + ' new urls'
             
             num_already_in_file_seed_cache = len( file_seeds ) - num_new
             
             if num_already_in_file_seed_cache > 0:
                 
                 parser_status += ' (' + HydrusData.ToHumanInt( num_already_in_file_seed_cache ) + ' already in queue)'
                 
             
             gallery_seed_status = CC.STATUS_SUCCESSFUL_AND_NEW
             
         except HydrusExceptions.ShutdownException:
             
             gallery_seed_status = CC.STATUS_VETOED
             parser_status = 'program is shutting down'
             
             return
             
         except HydrusExceptions.NotFoundException:
             
             gallery_seed_status = CC.STATUS_VETOED
             
             error_occurred = True
             
             parser_status = 'page 404'
             
         except HydrusExceptions.NetworkException as e:
             
             delay = HG.client_controller.new_options.GetInteger( 'downloader_network_error_delay' )
             
             self._DelayWork( delay, str( e ) )
             
             gallery_seed_status = CC.STATUS_ERROR
             error_occurred = True
             
             parser_status = str( e )
             
             HydrusData.PrintException( e )
             
         except Exception as e:
             
             gallery_seed_status = CC.STATUS_ERROR
             
             error_occurred = True
             
             parser_status = str( e )
             
         finally:
             
             gallery_seed_note = parser_status
             
             gallery_seed.SetStatus( gallery_seed_status, note = gallery_seed_note )
             
             self._gallery_seed_log.NotifyGallerySeedsUpdated( ( gallery_seed, ) )
             
         
         with self._lock:
             
             self._gallery_status = ClientImportControl.NeatenStatusText( parser_status )
             
         
         if error_occurred:
             
             time.sleep( 5 )
             
         
         return True
         
     else:
         
         with self._lock:
             
             self._gallery_status = ''
             
         
         return False
Beispiel #15
0
    def _CheckWatchableURL(self):
        def file_seeds_callable(file_seeds):

            return ClientImporting.UpdateFileSeedCacheWithFileSeeds(
                self._file_seed_cache, file_seeds)

        def status_hook(text):

            with self._lock:

                if len(text) > 0:

                    text = text.splitlines()[0]

                self._watcher_status = text

        def title_hook(text):

            with self._lock:

                if len(text) > 0:

                    text = text.splitlines()[0]

                self._subject = text

        gallery_seed = ClientImportGallerySeeds.GallerySeed(
            self._url, can_generate_more_pages=False)

        gallery_seed.SetFixedServiceKeysToTags(
            self._fixed_service_keys_to_tags)

        self._gallery_seed_log.AddGallerySeeds((gallery_seed, ))

        with self._lock:

            self._watcher_status = 'checking'

        try:

            (num_urls_added, num_urls_already_in_file_seed_cache,
             num_urls_total, result_404, added_new_gallery_pages,
             stop_reason) = gallery_seed.WorkOnURL(
                 'watcher', self._gallery_seed_log, file_seeds_callable,
                 status_hook, title_hook, self._NetworkJobFactory,
                 self._CheckerNetworkJobPresentationContextFactory,
                 self._file_import_options)

            if num_urls_added > 0:

                ClientImporting.WakeRepeatingJob(self._files_repeating_job)

            if result_404:

                with self._lock:

                    self._checking_paused = True

                    self._checking_status = ClientImporting.CHECKER_STATUS_404

            if gallery_seed.status == CC.STATUS_ERROR:

                # the [DEAD] stuff can override watcher status, so let's give a brief time for this to display the error

                with self._lock:

                    self._checking_paused = True

                    self._watcher_status = gallery_seed.note

                time.sleep(5)

        except HydrusExceptions.NetworkException as e:

            delay = HG.client_controller.new_options.GetInteger(
                'downloader_network_error_delay')

            self._DelayWork(delay, str(e))

            HydrusData.PrintException(e)

        watcher_status = gallery_seed.note
        watcher_status_should_stick = gallery_seed.status != CC.STATUS_SUCCESSFUL_AND_NEW

        with self._lock:

            if self._check_now:

                self._check_now = False

            self._watcher_status = watcher_status

            self._last_check_time = HydrusData.GetNow()

            self._UpdateFileVelocityStatus()

            self._UpdateNextCheckTime()

            self._Compact()

        if not watcher_status_should_stick:

            time.sleep(5)

            with self._lock:

                self._watcher_status = ''