summaryrefslogtreecommitdiff
path: root/Mac/Tools/IDE/PackageManager.py
blob: 0041a17979d6f0989372e96ca5c1c44f608cec84 (plain)
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
# Prelude to allow running this as a main program
def _init():
    import macresource
    import sys, os
    macresource.need('DITL', 468, "PythonIDE.rsrc")
    widgetrespathsegs = [sys.exec_prefix, "Mac", "Tools", "IDE", "Widgets.rsrc"]
    widgetresfile = os.path.join(*widgetrespathsegs)
    if not os.path.exists(widgetresfile):
        widgetrespathsegs = [os.pardir, "Tools", "IDE", "Widgets.rsrc"]
        widgetresfile = os.path.join(*widgetrespathsegs)
    refno = macresource.need('CURS', 468, widgetresfile)
    if os.environ.has_key('PYTHONIDEPATH'):
        # For development set this environment variable
        ide_path = os.environ['PYTHONIDEPATH']
    elif refno:
        # We're not a fullblown application
        idepathsegs = [sys.exec_prefix, "Mac", "Tools", "IDE"]
        ide_path = os.path.join(*idepathsegs)
        if not os.path.exists(ide_path):
            idepathsegs = [os.pardir, "Tools", "IDE"]
            for p in sys.path:
                ide_path = os.path.join(*([p]+idepathsegs))
                if os.path.exists(ide_path):
                    break

    else:
        # We are a fully frozen application
        ide_path = sys.argv[0]
    if ide_path not in sys.path:
        sys.path.insert(0, ide_path)

if __name__ == '__main__':
    _init()

import W
import Wapplication
from Carbon import Evt
import EasyDialogs
import FrameWork

import sys
import string
import os
import urllib

import pimp

PACKMAN_HOMEPAGE="http://www.python.org/packman"

ELIPSES = '...'

USER_INSTALL_DIR = os.path.join(os.environ.get('HOME', ''),
                                                                'Library',
                                                                'Python',
                                                                sys.version[:3],
                                                                'site-packages')

class PackageManagerMain(Wapplication.Application):

    def __init__(self):
        self.preffilepath = os.path.join("Python", "Package Install Manager Prefs")
        Wapplication.Application.__init__(self, 'Pimp')
        from Carbon import AE
        from Carbon import AppleEvents
        self.defaulturl = ""

        AE.AEInstallEventHandler(AppleEvents.kCoreEventClass, AppleEvents.kAEOpenApplication,
                        self.ignoreevent)
        AE.AEInstallEventHandler(AppleEvents.kCoreEventClass, AppleEvents.kAEReopenApplication,
                        self.ignoreevent)
        AE.AEInstallEventHandler(AppleEvents.kCoreEventClass, AppleEvents.kAEPrintDocuments,
                        self.ignoreevent)
        AE.AEInstallEventHandler(AppleEvents.kCoreEventClass, AppleEvents.kAEQuitApplication,
                        self.quitevent)
        if 1:
            import PyConsole
            # With -D option (OSX command line only) keep stderr, for debugging the IDE
            # itself.
            debug_stderr = None
            if len(sys.argv) >= 2 and sys.argv[1] == '-D':
                debug_stderr = sys.stderr
                del sys.argv[1]
            PyConsole.installoutput()
            if debug_stderr:
                sys.stderr = debug_stderr
        self.domenu_openstandard()
        self.mainloop()

    def makeusermenus(self):
        m = Wapplication.Menu(self.menubar, "File")
        newitem = FrameWork.MenuItem(m, "Open Standard Database", "N", 'openstandard')
        newexpitem = FrameWork.MenuItem(m, "Open Experimental Database", None, 'openexperimental')
        newexpitem.enable(pimp.PIMP_VERSION >= "0.4")
        openitem = FrameWork.MenuItem(m, "Open"+ELIPSES, "O", 'open')
        openURLitem = FrameWork.MenuItem(m, "Open URL"+ELIPSES, "D", 'openURL')
        FrameWork.Separator(m)
        moreinfoitem = FrameWork.MenuItem(m, "More Databases", None, 'opendatabasepage')
        FrameWork.Separator(m)
        closeitem = FrameWork.MenuItem(m, "Close", "W", 'close')
##              saveitem = FrameWork.MenuItem(m, "Save", "S", 'save')
##              saveasitem = FrameWork.MenuItem(m, "Save as"+ELIPSES, None, 'save_as')
##              FrameWork.Separator(m)

        m = Wapplication.Menu(self.menubar, "Edit")
        undoitem = FrameWork.MenuItem(m, "Undo", 'Z', "undo")
        FrameWork.Separator(m)
        cutitem = FrameWork.MenuItem(m, "Cut", 'X', "cut")
        copyitem = FrameWork.MenuItem(m, "Copy", "C", "copy")
        pasteitem = FrameWork.MenuItem(m, "Paste", "V", "paste")
        FrameWork.MenuItem(m, "Clear", None,  "clear")
        FrameWork.Separator(m)
        selallitem = FrameWork.MenuItem(m, "Select all", "A", "selectall")

        m = Wapplication.Menu(self.menubar, "Package")
        runitem = FrameWork.MenuItem(m, "Install", "I", 'install')
        homepageitem = FrameWork.MenuItem(m, "Visit Homepage", None, 'homepage')

        self.openwindowsmenu = Wapplication.Menu(self.menubar, 'Windows')
        self.makeopenwindowsmenu()
        self.makehelpmenu()
        self._menustocheck = [closeitem,
                        undoitem, cutitem, copyitem, pasteitem,
                        selallitem,
                        runitem, homepageitem]

    def makehelpmenu(self):
        python_app = os.path.join(sys.prefix, 'Resources/Python.app')
        help_source = os.path.join(python_app, 'Contents/Resources/English.lproj/Documentation')
        hashelp = os.path.isdir(help_source)

        self.helpmenu = m = self.gethelpmenu()
        helpitem1 = FrameWork.MenuItem(m, "PackageManager Help", None, self.domenu_packmanhelp)
        helpitem1.enable(hashelp)
        helpitem2 = FrameWork.MenuItem(m, "MacPython Help", None, self.domenu_pythonhelp)
        helpitem2.enable(hashelp)

    def quitevent(self, theAppleEvent, theReply):
        self._quit()

    def ignoreevent(self, theAppleEvent, theReply):
        pass

    def opendocsevent(self, theAppleEvent, theReply):
        W.SetCursor('watch')
        import aetools
        parameters, args = aetools.unpackevent(theAppleEvent)
        docs = parameters['----']
        if type(docs) <> type([]):
            docs = [docs]
        for doc in docs:
            fsr, a = doc.FSResolveAlias(None)
            path = fsr.as_pathname()
            path = urllib.pathname2url(path)
            self.opendoc(path)

    def opendoc(self, url):
        if url:
            self.defaulturl = url
        PackageBrowser(url)

    def getabouttext(self):
        return "About Package Manager"+ELIPSES

    def do_about(self, id, item, window, event):
        EasyDialogs.Message("Package Install Manager for Python\nPackMan engine (pimp) version: %s" %
                pimp.PIMP_VERSION)

    def domenu_openstandard(self, *args):
        if pimp.PIMP_VERSION >= "0.4":
            url = pimp.getDefaultDatabase()
        else:
            # 0.3 compatibility
            url = None
        self.opendoc(url)

    def domenu_openexperimental(self, *args):
        database = pimp.getDefaultDatabase(experimental=True)
        self.opendoc(database)

    def domenu_open(self, *args):
        filename = EasyDialogs.AskFileForOpen(typeList=("TEXT",))
        if filename:
            filename = urllib.pathname2url(filename)
            self.opendoc(filename)

    def domenu_openURL(self, *args):
        ok = EasyDialogs.AskYesNoCancel(
                "Warning: by opening a non-standard database "
                "you are trusting the maintainer of it "
                "to run arbitrary code on your machine.",
                yes="OK", no="")
        if ok <= 0: return
        url = EasyDialogs.AskString("URL of database to open:",
                default=self.defaulturl, ok="Open")
        if url:
            self.opendoc(url)

    def domenu_opendatabasepage(self):
        import ic

        icr = ic.IC()
        icr.launchurl(PACKMAN_HOMEPAGE)
    def makeopenwindowsmenu(self):
        for i in range(len(self.openwindowsmenu.items)):
            self.openwindowsmenu.menu.DeleteMenuItem(1)
            self.openwindowsmenu.items = []
        windows = []
        self._openwindows = {}
        for window in self._windows.keys():
            title = window.GetWTitle()
            if not title:
                title = "<no title>"
            windows.append((title, window))
        windows.sort()
        for title, window in windows:
            shortcut = None
            item = FrameWork.MenuItem(self.openwindowsmenu, title, shortcut, callback = self.domenu_openwindows)
            self._openwindows[item.item] = window
        self._openwindowscheckmark = 0
        self.checkopenwindowsmenu()

    def domenu_openwindows(self, id, item, window, event):
        w = self._openwindows[item]
        w.ShowWindow()
        w.SelectWindow()

    def domenu_quit(self):
        self._quit()

    def domenu_save(self, *args):
        print "Save"

    def domenu_pythonhelp(self, *args):
        from Carbon import AH
        AH.AHGotoPage("MacPython Help", None, None)

    def domenu_packmanhelp(self, *args):
        from Carbon import AH
        AH.AHGotoPage("MacPython Help", "packman.html", None)

    def _quit(self):
##              import PyConsole, PyEdit
        for window in self._windows.values():
            try:
                rv = window.close() # ignore any errors while quitting
            except:
                rv = 0   # (otherwise, we can get stuck!)
            if rv and rv > 0:
                return
##              try:
##                      PyConsole.console.writeprefs()
##                      PyConsole.output.writeprefs()
##                      PyEdit.searchengine.writeprefs()
##              except:
##                      # Write to __stderr__ so the msg end up in Console.app and has
##                      # at least _some_ chance of getting read...
##                      # But: this is a workaround for way more serious problems with
##                      # the Python 2.2 Jaguar addon.
##                      sys.__stderr__.write("*** PythonIDE: Can't write preferences ***\n")
        self.quitting = 1

class PimpInterface:

    def setuppimp(self, url):
        self.pimpprefs = pimp.PimpPreferences()
        self.pimpdb = pimp.PimpDatabase(self.pimpprefs)
        if not url:
            url = self.pimpprefs.pimpDatabase
        try:
            self.pimpdb.appendURL(url)
        except IOError, arg:
            rv = "Cannot open %s: %s\n" % (url, arg)
            rv += "\nSee MacPython Package Manager help page."
            return rv
        except:
            rv = "Unspecified error while parsing database: %s\n" % url
            rv += "Usually, this means the database is not correctly formatted.\n"
            rv += "\nSee MacPython Package Manager help page."
            return rv
        # Check whether we can write the installation directory.
        # If not, set to the per-user directory, possibly
        # creating it, if needed.
        installDir = self.pimpprefs.installDir
        if not os.access(installDir, os.R_OK|os.W_OK|os.X_OK):
            rv = self.setuserinstall(1)
            if rv: return rv
        return self.pimpprefs.check()

    def closepimp(self):
        self.pimpdb.close()
        self.pimpprefs = None
        self.pimpdb = None
        self.packages = []

    def setuserinstall(self, onoff):
        rv = ""
        if onoff:
            if not os.path.exists(USER_INSTALL_DIR):
                try:
                    os.makedirs(USER_INSTALL_DIR)
                except OSError, arg:
                    rv = rv + arg + "\n"
            if not USER_INSTALL_DIR in sys.path:
                import site
                reload(site)
            self.pimpprefs.setInstallDir(USER_INSTALL_DIR)
        else:
            self.pimpprefs.setInstallDir(None)
        rv = rv + self.pimpprefs.check()
        return rv

    def getuserinstall(self):
        return self.pimpprefs.installDir == USER_INSTALL_DIR

    def getbrowserdata(self, show_hidden=1):
        packages = self.pimpdb.list()
        if show_hidden:
            self.packages = packages
        else:
            self.packages = []
            for pkg in packages:
                name = pkg.fullname()
                if name[0] == '(' and name[-1] == ')' and not show_hidden:
                    continue
                self.packages.append(pkg)
        rv = []
        for pkg in self.packages:
            name = pkg.fullname()
            status, _ = pkg.installed()
            description = pkg.description()
            description_line1 = description.split('\n')[0]
            rv.append((status, name, description_line1))
        return rv

    def getstatus(self, number):
        pkg = self.packages[number]
        return pkg.installed()

    def installpackage(self, sel, output, recursive, force):
        pkg = self.packages[sel]
        pimpinstaller = pimp.PimpInstaller(self.pimpdb)
        list, messages = pimpinstaller.prepareInstall(pkg, force, recursive)
        if messages:
            return messages
        messages = pimpinstaller.install(list, output)
        return messages

class PackageBrowser(PimpInterface):

    def __init__(self, url = None):
        self.ic = None
        messages = self.setuppimp(url)
        self.setupwidgets()
        self.updatestatus()
        self.showmessages(messages)

    def close(self):
        self.closepimp()

    def setupwidgets(self):
        DESCRIPTION_HEIGHT = 140
        INSTALL_POS = -30
        STATUS_POS = INSTALL_POS - (70 + DESCRIPTION_HEIGHT)
        self.w = W.Window((580, 600), "Python Install Manager", minsize = (400, 400), tabbable = 0)
        self.w.titlebar = W.TextBox((4, 8, 60, 18), 'Packages:')
        self.w.hidden_button = W.CheckBox((-100, 4, 0, 18), 'Show Hidden', self.updatestatus)
        data = self.getbrowserdata()
        self.w.packagebrowser = W.MultiList((4, 24, 0, STATUS_POS-2), data, self.listhit, cols=3)

        self.w.installed_l = W.TextBox((4, STATUS_POS, 70, 12), 'Installed:')
        self.w.installed = W.TextBox((74, STATUS_POS, 0, 12), '')
        self.w.message_l = W.TextBox((4, STATUS_POS+20, 70, 12), 'Status:')
        self.w.message = W.TextBox((74, STATUS_POS+20, 0, 12), '')
        self.w.homepage_button = W.Button((4, STATUS_POS+40, 96, 18), 'View homepage', self.do_homepage)
        self.w.description_l = W.TextBox((4, STATUS_POS+70, 70, 12), 'Description:')
        self.w.description = W.EditText((74, STATUS_POS+70, 0, DESCRIPTION_HEIGHT-4))

        self.w.divline = W.HorizontalLine((0, INSTALL_POS-4, 0, 0))
        self.w.verbose_button = W.CheckBox((84, INSTALL_POS+4, 60, 18), 'Verbose')
        self.w.recursive_button = W.CheckBox((146, INSTALL_POS+4, 120, 18), 'Install dependencies', self.updatestatus)
        self.w.recursive_button.set(1)
        self.w.force_button = W.CheckBox((268, INSTALL_POS+4, 70, 18), 'Overwrite', self.updatestatus)
        self.w.user_button = W.CheckBox((340, INSTALL_POS+4, 140, 18), 'For Current User Only', self.do_user)
        self.w.install_button = W.Button((4, INSTALL_POS+4, 56, 18), 'Install:', self.do_install)
        self.w.open()
        self.w.description.enable(0)

    def updatestatus(self):
        topcell = self.w.packagebrowser.gettopcell()
        sel = self.w.packagebrowser.getselection()
        data = self.getbrowserdata(self.w.hidden_button.get())
        self.w.packagebrowser.setitems(data)
        self.w.user_button.set(self.getuserinstall())
        if len(sel) != 1:
            self.w.installed.set('')
            self.w.message.set('')
            self.w.install_button.enable(0)
            self.w.homepage_button.enable(0)
            self.w.description.set('')
            self.w.verbose_button.enable(0)
            self.w.recursive_button.enable(0)
            self.w.force_button.enable(0)
            self.w.user_button.enable(0)
        else:
            sel = sel[0]
            if sel >= len(self.packages):
                sel = 0
            self.w.packagebrowser.setselection([sel])
            installed, message = self.getstatus(sel)
            self.w.installed.set(installed)
            self.w.message.set(message)
            self.w.install_button.enable(installed != "yes" or self.w.force_button.get())
            self.w.homepage_button.enable(not not self.packages[sel].homepage())
            description = self.packages[sel].description()
            description = description.splitlines()
            description = '\r'.join(description)
            self.w.description.set(description)
            self.w.verbose_button.enable(1)
            self.w.recursive_button.enable(1)
            self.w.force_button.enable(1)
            self.w.user_button.enable(1)
        self.w.packagebrowser.settopcell(topcell)

    def listhit(self, *args, **kwargs):
        self.updatestatus()

    def do_install(self):
        sel = self.w.packagebrowser.getselection()[0]
        if self.w.verbose_button.get():
            output = sys.stdout
        else:
            output = None
        recursive = self.w.recursive_button.get()
        force = self.w.force_button.get()
        messages = self.installpackage(sel, output, recursive, force)

        # Re-read .pth files
        import site
        reload(site)

        self.updatestatus()
        self.showmessages(messages)

    def showmessages(self, messages):
        if messages:
            # To be on the safe side we always show the hidden packages,
            # they may be referred to in the error messages.
            if not self.w.hidden_button.get():
                self.w.hidden_button.set(1)
                self.updatestatus()
            if type(messages) == list:
                messages = '\n'.join(messages)
            if self.w.verbose_button.get():
                sys.stdout.write(messages + '\n')
            EasyDialogs.Message(messages)

    def do_homepage(self):
        sel = self.w.packagebrowser.getselection()[0]
        if not self.ic:
            import ic

            self.ic = ic.IC()
        self.ic.launchurl(self.packages[sel].homepage())

    def do_user(self):
        messages = self.setuserinstall(self.w.user_button.get())
        self.updatestatus()
        self.showmessages(messages)

if __name__ == '__main__':
    PackageManagerMain()