/usr/share/sugar/activities/Browse.activity/filepicker.py is in sugar-browse-activity 137-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 | # Copyright (C) 2007, One Laptop Per Child
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import logging
import os
import tempfile
import shutil
from gi.repository import Gtk
import hulahop
import xpcom
from xpcom import components
from xpcom.components import interfaces
from xpcom.server.factory import Factory
from sugar3.graphics.objectchooser import ObjectChooser
from sugar3.activity.activity import get_activity_root
_temp_dirs_to_clean = []
def cleanup_temp_files():
while _temp_dirs_to_clean:
temp_dir = _temp_dirs_to_clean.pop()
if os.path.isdir(temp_dir):
shutil.rmtree(temp_dir, ignore_errors=True)
else:
logging.debug('filepicker.cleanup_temp_files: no file %r',
temp_dir)
class FilePicker:
_com_interfaces_ = interfaces.nsIFilePicker
cid = '{57901c41-06cb-4b9e-8258-37323327b583}'
description = 'Sugar File Picker'
def __init__(self):
self._title = None
self._parent = None
self._file = None
def appendFilter(self, title, filter):
logging.warning('FilePicker.appendFilter: UNIMPLEMENTED')
def appendFilters(self, filterMask):
logging.warning('FilePicker.appendFilters: UNIMPLEMENTED')
def init(self, parent, title, mode):
self._title = title
self._file = None
self._parent = hulahop.get_view_for_window(parent).get_toplevel()
if mode != interfaces.nsIFilePicker.modeOpen:
raise xpcom.COMException(NS_ERROR_NOT_IMPLEMENTED)
def show(self):
chooser = ObjectChooser(parent=self._parent)
jobject = None
try:
result = chooser.run()
if result == Gtk.ResponseType.ACCEPT:
jobject = chooser.get_selected_object()
logging.debug('FilePicker.show: %r', jobject)
if jobject and jobject.file_path:
tmp_dir = tempfile.mkdtemp(prefix='', \
dir=os.path.join(get_activity_root(), 'tmp'))
self._file = os.path.join(tmp_dir,
_basename_strip(jobject))
os.rename(jobject.file_path, self._file)
global _temp_dirs_to_clean
_temp_dirs_to_clean.append(tmp_dir)
logging.debug('FilePicker.show: file=%r', self._file)
finally:
if jobject is not None:
jobject.destroy()
chooser.destroy()
del chooser
if self._file:
return interfaces.nsIFilePicker.returnOK
else:
return interfaces.nsIFilePicker.returnCancel
def set_defaultExtension(self, default_extension):
logging.warning('FilePicker.set_defaultExtension: UNIMPLEMENTED')
def get_defaultExtension(self):
logging.warning('FilePicker.get_defaultExtension: UNIMPLEMENTED')
return None
def set_defaultString(self, default_string):
logging.warning('FilePicker.set_defaultString: UNIMPLEMENTED')
def get_defaultString(self):
logging.warning('FilePicker.get_defaultString: UNIMPLEMENTED')
return None
def set_displayDirectory(self, display_directory):
logging.warning('FilePicker.set_displayDirectory: UNIMPLEMENTED')
def get_displayDirectory(self):
logging.warning('FilePicker.get_displayDirectory: UNIMPLEMENTED')
return None
def set_filterIndex(self, filter_index):
logging.warning('FilePicker.set_filterIndex: UNIMPLEMENTED')
def get_filterIndex(self):
logging.warning('FilePicker.get_filterIndex: UNIMPLEMENTED')
return None
def get_file(self):
logging.debug('FilePicker.get_file: %r', self._file)
if self._file:
cls = components.classes["@mozilla.org/file/local;1"]
local_file = cls.createInstance(interfaces.nsILocalFile)
local_file.initWithPath(self._file)
return local_file
else:
return None
def get_Files(self):
logging.warning('FilePicker.get_Files: UNIMPLEMENTED')
return None
def get_FileURL(self):
logging.warning('FilePicker.get_FileURL: UNIMPLEMENTED')
return None
components.registrar.registerFactory(FilePicker.cid,
FilePicker.description,
'@mozilla.org/filepicker;1',
Factory(FilePicker))
def _basename_strip(jobject):
name = jobject.metadata.get('title', 'untitled')
name = name.replace(os.sep, ' ').strip()
root_, mime_extension = os.path.splitext(jobject.file_path)
if not name.endswith(mime_extension):
name += mime_extension
return name
|