コード例 #1
0
ファイル: request.py プロジェクト: bneijt/boxchannel
def main(args):

    #Load or generate user preferences
    prefs = boxchannel.initUserPreferences()
    
    #Load all index files, see if we can find the mentioned file
    indexFileDirectory = prefs['indexDirectory']
    requestDirectory = prefs['requestDirectory']
    stageDirectory = prefs['stageDirectory']

    if not os.path.exists(prefs['requestDirectory']):
        os.makedirs(prefs['requestDirectory'])

    if len(args) < 1:
        print "No file requested, listing all files indexed"
        for pathAndHashes in boxchannel.indexedFiles(indexFileDirectory):
            fullPath = pathAndHashes.pop(0)
            print os.path.basename(fullPath)
        return
    requestedFile = args.pop()
    
    #Clean up routine
    requests = boxchannel.filesInDirectory(requestDirectory)
    if len(requests) > boxchannel.maximumNumRequests:
        print "More then", boxchannel.maximumNumRequests, "requests, cleaning up"
        requests.sort(key=lambda x: os.path.getctime(x))
        while len(requests) > boxchannel.maximumNumRequests:
            target = requests.pop(0)
            print "Removing", target
            os.unlink(target)
            
    
    print "Looking for:", requestedFile  
    requestMade = False  
    for pathAndHashes in boxchannel.indexedFiles(indexFileDirectory):
        fullPath = pathAndHashes.pop(0)
        hashes = pathAndHashes
        if os.path.basename(fullPath) == requestedFile:
            #Found the file
            requestMade = True
            print "Requesting:", fullPath
            requestStageDirectory = os.path.join(stageDirectory, requestedFile)
            
            if not os.path.exists(requestStageDirectory):
                os.mkdir(requestStageDirectory)
            
            for (blockIndex, h) in enumerate(hashes):
                h = h.strip() #Remove newline if it is on the line
                stageName = os.path.join(requestStageDirectory, "%s.%s" %(h, blockIndex))
                requestName = os.path.join(requestDirectory, h)
                print "Creating file:", requestName
                file(requestName, 'w').close()
                file(stageName, 'w').close()
    if not requestMade:
        print "Could not find requested file"
        return 1
    return 0
コード例 #2
0
ファイル: index.py プロジェクト: bneijt/boxchannel
def main(args):
    #Load file and store hashes in index file
    prefs = boxchannel.initUserPreferences()
    if not os.path.exists(prefs['indexDirectory']):
        os.makedirs(prefs['indexDirectory'])

    indexFileName = os.path.join(prefs['indexDirectory'], "%s.index" % prefs['id'])
    indexFile = file(indexFileName, 'w')
    for fileName in args:
        print "Indexing", fileName
        newFile = file(fileName, 'r')
        lineElements = [os.path.abspath(fileName)]
        for blockHash in boxchannel.hashesFor(newFile):
            lineElements.append(blockHash)
        line = simplejson.dumps(lineElements)
        assert "\n" not in line
        indexFile.write(line)
        indexFile.write("\n")
    indexFile.close()
コード例 #3
0
ファイル: index.py プロジェクト: bneijt/boxchannel
def main(args):
    #Load file and store hashes in index file
    prefs = boxchannel.initUserPreferences()
    if not os.path.exists(prefs['indexDirectory']):
        os.makedirs(prefs['indexDirectory'])

    indexFileName = os.path.join(prefs['indexDirectory'],
                                 "%s.index" % prefs['id'])
    indexFile = file(indexFileName, 'w')
    for fileName in args:
        print "Indexing", fileName
        newFile = file(fileName, 'r')
        lineElements = [os.path.abspath(fileName)]
        for blockHash in boxchannel.hashesFor(newFile):
            lineElements.append(blockHash)
        line = simplejson.dumps(lineElements)
        assert "\n" not in line
        indexFile.write(line)
        indexFile.write("\n")
    indexFile.close()