mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2025-01-11 07:23:04 +00:00
68c2d54c0b
This patch adds support for a mac native build. At the moment it's a fairly simple .app - i.e. so simple as to be unacceptable for a shipping product, but ok for testing and experiment at this point. notably once launched, the app's ui does not respond at all, although its dock icon does allow it to be force-quit. this produces a single .app bundle, which when run will look for a node basedir in ~/.tahoe. If one is not found, one will be created in ~/Library/Application Support/Allmydata Tahoe, and that will be symlinked to ~/.tahoe if the basedir is lacking basic config (introducer.furl and root_dir.cap) then the wx config wizard will be launched to log into an account and to set up those files. if a webport file is not found, the default value of 8123 will be written into it. once the node has started running, a webbrowser will be opened to the webish interface at the users root_dir note that, once configured, the node runs as the main thread of the .app, no daemonisation is done, twistd is not involved. the binary itself, from within the .app bundle, i.e. "Allmydata Tahoe.app/Contents/MacOS/Allmydata Tahoe" can be used from the command line and functions as the 'tahoe' executable would in a unix environment, with one exception - when launched with no args it triggers the default behaviour of running a node, and if necessary config wizard, as if the user had launched the .app one other gotcha to be aware of is that symlinking to this binary from some other place in ones $PATH will most likely not work. when I tried this, something - wx I believe - exploded, since it seems to use argv[0] to figure out where necessary libraries reside and fails if argv[0] isn't in the .app bundle. it's pretty easy to set up a script a la #!/bin/bash /Blah/blah/blah/Allmydata\ Tahoe.app/Contents/MacOS/Allmydata\ Tahoe "${@}"
96 lines
3.1 KiB
Python
96 lines
3.1 KiB
Python
import pkgreshook # override the pkg_resources zip provider for py2app deployment
|
|
pkgreshook.install() # this is done before nevow is imported by depends
|
|
import depends # import dependencies so that py2exe finds them
|
|
_junk = depends # appease pyflakes
|
|
|
|
import sys
|
|
import os
|
|
|
|
def run_default_node():
|
|
import operator
|
|
import os
|
|
|
|
basedir = os.path.expanduser('~/.tahoe')
|
|
if not os.path.isdir(basedir):
|
|
app_supp = os.path.expanduser('~/Library/Application Support/Allmydata Tahoe/')
|
|
if not os.path.isdir(app_supp):
|
|
os.makedirs(app_supp)
|
|
os.symlink(app_supp, basedir)
|
|
|
|
if not os.path.exists(os.path.join(basedir, 'webport')):
|
|
f = file(os.path.join(basedir, 'webport'), 'wb')
|
|
f.write('8123')
|
|
f.close()
|
|
|
|
def files_exist(file_list):
|
|
extant_conf = [ os.path.exists(os.path.join(basedir, f)) for f in file_list ]
|
|
return reduce(operator.__and__, extant_conf)
|
|
|
|
def is_config_incomplete():
|
|
necessary_conf_files = ['introducer.furl', 'private/root_dir.cap']
|
|
need_config = not files_exist(necessary_conf_files)
|
|
if need_config:
|
|
print 'some config is missing from basedir (%s): %s' % (basedir, necessary_conf_files)
|
|
return need_config
|
|
|
|
if is_config_incomplete():
|
|
#import wx
|
|
from confwiz import ConfWizApp
|
|
app = ConfWizApp()
|
|
app.MainLoop()
|
|
|
|
if is_config_incomplete():
|
|
print 'config still incomplete; confwiz cancelled, exiting'
|
|
return 1
|
|
|
|
from twisted.internet import reactor
|
|
from twisted.python import log, logfile
|
|
from allmydata import client
|
|
# set up twisted logging. this will become part of the node rsn.
|
|
logdir = os.path.join(basedir, 'logs')
|
|
if not os.path.exists(logdir):
|
|
os.makedirs(logdir)
|
|
lf = logfile.LogFile('tahoesvc.log', logdir)
|
|
log.startLogging(lf)
|
|
|
|
def webopen():
|
|
if files_exist(['node.url', 'private/root_dir.cap']):
|
|
def read_file(f):
|
|
fh = file(f, 'rb')
|
|
contents = fh.read().strip()
|
|
fh.close()
|
|
return contents
|
|
import urllib, webbrowser
|
|
nodeurl = read_file(os.path.join(basedir, 'node.url'))
|
|
if nodeurl[-1] != "/":
|
|
nodeurl += "/"
|
|
root_dir = read_file(os.path.join(basedir, 'private/root_dir.cap'))
|
|
url = nodeurl + "uri/%s/" % urllib.quote(root_dir)
|
|
webbrowser.open(url)
|
|
else:
|
|
print 'files missing, not opening initial webish root page'
|
|
|
|
# run the node itself
|
|
os.chdir(basedir)
|
|
c = client.Client(basedir)
|
|
reactor.callLater(0, c.startService) # after reactor startup
|
|
reactor.callLater(4, webopen) # give node a chance to connect before loading root dir
|
|
reactor.run()
|
|
|
|
return 0
|
|
|
|
|
|
|
|
def main(argv):
|
|
if len(argv) == 1:
|
|
# then we were given no args; do default mac node startup
|
|
sys.exit(run_default_node())
|
|
else:
|
|
# given any cmd line args, do 'tahoe' cli behaviour
|
|
from allmydata.scripts import runner
|
|
sys.exit(runner.runner(argv[1:], install_node_control=False))
|
|
|
|
if __name__ == '__main__':
|
|
main(sys.argv)
|
|
|