aboutsummaryrefslogblamecommitdiffstats
path: root/src/mount.wikipediafs
blob: 19a3dc9006b1f5e464a37f467b899af4441d7877 (plain) (tree)



















                                                                          

          





                                                                     
                                                    
           










                                                                          

                             











                                                                             





                                           
   

                                                    

                                                  





                            
        
#!/usr/bin/env python
# -*- coding: utf-8 -*-

# WikipediaFS
# Copyright (C) 2005 - 2007 Mathieu Blondel
#
# 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 Street, Fifth Floor, Boston, MA 02110-1301 USA.

import os
import sys
from sys import exit

try:
    from fuse import FuseError
except:
    print "The Python bindings for fuse do not seem to be installed."
    print "Please install fuse-python 0.2 or later."
    exit(1)
    
# When WFS is mounted with fstab, HOME is not defined...
# We have to deal with this since we need HOME for the config and the log.
if not os.environ.has_key("HOME"):
    last = len(sys.argv) - 1
    mountoptions = sys.argv[last]
    arr = []
    home = None
    for o in mountoptions.split(","):
        if o[0:5] == "home=":
            spl = o.split("=")
            if len(spl) == 2:
                home = spl[1]
        elif o != "noauto" and o != "user" and o != "auto" and o != "nouser":
            arr.append(o)
    sys.argv[last] = ','.join(arr)

    if home:    
        os.environ["HOME"] = home
    elif os.environ.has_key("USER"):
        if os.environ["USER"] == "root":
            os.environ["HOME"] = "/root/"
        else:
            os.environ["HOME"] = "/home/%s/" % os.environ["USER"]

from wikipediafs.fs import WikipediaFS

try:
    from wikipediafs.version import VERSION
except:
    VERSION = 'development version'
   
try:
    server = WikipediaFS(version="%prog " + VERSION,
                         usage='%prog mountpoint',
                         dash_s_do='undef')

    server.parse(errex=1)
    server.multithreaded = 0
    server.main()
except FuseError, detail:
    print detail