filesearch.py :  » IDE » PIDA » pida-0.6beta3 » pida-plugins » filesearch » Python Open Source

Home
Python Open Source
1.3.1.2 Python
2.Ajax
3.Aspect Oriented
4.Blog
5.Build
6.Business Application
7.Chart Report
8.Content Management Systems
9.Cryptographic
10.Database
11.Development
12.Editor
13.Email
14.ERP
15.Game 2D 3D
16.GIS
17.GUI
18.IDE
19.Installer
20.IRC
21.Issue Tracker
22.Language Interface
23.Log
24.Math
25.Media Sound Audio
26.Mobile
27.Network
28.Parser
29.PDF
30.Project Management
31.RSS
32.Search
33.Security
34.Template Engines
35.Test
36.UML
37.USB Serial
38.Web Frameworks
39.Web Server
40.Web Services
41.Web Unit
42.Wiki
43.Windows
44.XML
Python Open Source » IDE » PIDA 
PIDA » pida 0.6beta3 » pida plugins » filesearch » filesearch.py
# -*- coding: utf-8 -*- 
"""
    filesearch.filesearch
    ~~~~~~~~~~~~~~~~~~~~~

    This file contains the UI- and service-related functions of the file
    search plugin.

    The search functions itself are inside ``search.py``, the search filters
    inside ``filters.py``.

    :copyright: 2007 by Benjamin Wiegand.
    :license: GNU GPL, see LICENSE for more details.
"""

import gtk

from os import path
from kiwi.ui.objectlist import Column

from pida.core.locale import Locale
from pida.ui.views import PidaGladeView,WindowConfig
from pida.core.service import Service
from pida.core.events import EventsConfig
from pida.core.actions import ActionsConfig
from pida.core.features import FeaturesConfig
from pida.core.actions import TYPE_REMEMBER_TOGGLE
from pida.core.options import OptionsConfig
from pida.utils.gthreads import GeneratorTask

from filters import ValidationError,FileNameMatchesFilter
from search import get_filters,do_search,SearchMatch


locale = Locale('filesearch')
_ = locale.gettext


class SearchView(PidaGladeView):

    key = 'filesearch.form'

    gladefile = 'search'
    locale = locale
    label_text = _('File Search')
    icon_name = 'search'
    filters = []
    running = False
    entries = {}

    def create_ui(self):
        # filter select
        self.filter_select.prefill(get_filters())

        self.match_list.set_columns([
            Column('icon_stock_id', use_stock=True, title=' '),
            #Column('state_markup', use_markup=True, title=' '),
            Column('markup', use_markup=True, title=_('Name')),
            Column('path', title=_('Path'))
        ])

        # add standard filter
        self.new_filter(FileNameMatchesFilter)

        # task for asynchrounus searching
        # ``append_to_match_list`` is called if a match was found
        # ``search_finished`` is called at the end of search
        self.task = GeneratorTask(do_search, self.append_to_match_list,
                                  self.search_finished)


    def on_add_button__clicked(self, btn):
        # get selected filter
        f = self.filter_select.read()
        self.new_filter(f)

    def on_search_button__clicked(self, btn):
        if not self.running:
            if self.validate():
                self.start()
        else:
            self.stop()

    def on_match_list__row_activated(self, rowitem, search_match):
        self.svc.boss.cmd('buffer', 'open_file',
                          file_name=path.join(search_match.path,
                                              search_match.name))
        self.svc.boss.editor.cmd('grab_focus')

    def can_be_closed(self):
        self.stop()
        return True

    def start(self):
        """
        Start the asynchrounus search task.
        """
        self.running = True
        self.match_list.clear()
        self.entries = {}
        self.update_match_count(0)
        self.search_button.set_label(gtk.STOCK_STOP)
        self.task.start(self.get_search_folder(), self.filters)

    def stop(self):
        """
        Stop the abort task.
        """
        self.task.stop()
        self.search_finished()

    def new_filter(self, f):
        """
        This function adds a new filter to the GUI and registers it in
        `self.filters``.
        """
        entries = f.get_entries()
        new_filter = f(**entries)

        box = gtk.HBox(False, 5)
        box.pack_start(gtk.Label(f.description), expand=False)

        # filter entry objects
        for name, entry in entries.iteritems():
            box.pack_start(entry)
            entry.connect('activate', self.on_search_button__clicked)

        # remove button
        def remove_btn_clicked(btn):
            btn.parent.destroy()
            self.filters.remove(new_filter)

        btn = gtk.Button()
        btn.connect('clicked', remove_btn_clicked)
        img = gtk.image_new_from_stock(gtk.STOCK_REMOVE, gtk.ICON_SIZE_MENU)
        btn.set_image(img)

        box.pack_start(btn, expand=False)

        self.filter_box.pack_start(box)
        box.show_all()

        self.filters.append(new_filter)

    def set_search_folder(self, folder):
        self.select_folder.set_current_folder(folder)

    def get_search_folder(self):
        """
        Returns the last folder opened in the filemanager.
        If it's not available, it returns the path to the project root instead.
        """
        folder = self.select_folder.get_current_folder()
        # XXX: Windows?
        if folder == '/':
            folder = self.svc.current_project.source_directory
        return folder

    def validate(self):
        """
        Tell all filters to validate their input fields. If a filter raises a
        ``ValidationError`` the user is shown an error message.
        """
        for f in self.filters:
            try:
                f.validate()
            except ValidationError, e:
                self.svc.error_dlg(e)
                return False

        return True

    def update_match_count(self, count=None):
        if count is None:
            self.match_count += 1
        else:
            self.match_count = 0
        self.count_label.set_text('%s files' % self.match_count)

    def append_to_match_list(self, dirpath, filename):
        #for lister in self.file_listers:
        #    # XXX: this loads all files inside the directory and filters the
        #    #      file later --> dirty hack
        #    #      find a better way only to load the needed file
        #    def _f(*args, **kwargs):
        #        self.add_or_update_file(
        #            path.join(dirpath, filename),
        #            *args,
        #            **kwargs
        #        )
        #    GeneratorTask(lister, _f).start(dirpath)
        self.add_or_update_file(filename, dirpath, 'normal')

    def add_or_update_file(self, name, basepath, state):
        entry = self.entries.setdefault(path.join(basepath, name),
                                            SearchMatch(basepath, name))
        entry.state = state

        if entry.visible:
            # update file
            self.match_list.update(entry)
        else:
            # add file
            self.match_list.append(entry)
            entry.visible = True
            self.update_match_count()

    def search_finished(self):
        self.running = False
        self.search_button.set_label(gtk.STOCK_FIND)


class SearchEvents(EventsConfig):

    def subscribe_all_foreign(self):
        self.subscribe_foreign('filemanager', 'browsed_path_changed',
                               self.svc.change_search_folder)
        self.subscribe_foreign('project', 'project_switched',
                               self.svc.on_project_switched)


class SearchActions(ActionsConfig):

    def create_actions(self):
        SearchWindowConfig.action = self.create_action(
            'show_search',
            TYPE_REMEMBER_TOGGLE,
            _('File Search'),
            _('Show the File Search'),
            gtk.STOCK_INFO,
            self.on_show_search,
            '<Shift><Control>f',
        )

    def on_show_search(self, action):
        if action.get_active():
            self.svc.show_search()
        else:
            self.svc.hide_search()


class FileManagerOptionsConfig(OptionsConfig):
    def create_options(self):
        self.create_option(
            'exclude_hidden',
            _('Don\'t search in hidden directories'),
            bool,
            True,
            _('Excludes hidden directories from search')
        )

        self.create_option(
            'exclude_vcs',
            _('Don\'t search in data directories of version control systems'),
            bool,
            True,
            _('Excludes the data directories of version control systems '
              'from search')
        )

class SearchWindowConfig(WindowConfig):
    key = SearchView.key
    label_text = SearchView.label_text

class SearchFeaturesConfig(FeaturesConfig):
    def subscribe_all_foreign(self):
        self.subscribe_foreign('window', 'window-config',
            SearchWindowConfig)


class Search(Service):
    """Search service"""

    actions_config = SearchActions
    events_config = SearchEvents
    options_config = FileManagerOptionsConfig

    def pre_start(self):
        self._view = SearchView(self)

    def change_search_folder(self, path):
        self._view.set_search_folder(path)

    def show_search(self):
        self.boss.cmd('window', 'add_view', paned='Plugin', view=self._view)

    def hide_search(self):
        self.boss.cmd('window', 'remove_view', view=self._view)

    def ensure_view_visible(self):
        action = self.get_action('show_search')
        if not action.get_active():
            action.set_active(True)
        self.boss.cmd('window', 'presnet_view', view=self._view)

    def stop(self):
        # abort search task
        self._view.stop()
        if self.get_action('show_search').get_active():
            self.hide_search()

    def on_project_switched(self, project):
        self.current_project = project


# Required Service attribute for service loading
Service = Search
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.