Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to use twisted for some basic FTP server, just like this example, with one simple customization: I want to fire an event when a file upload (STOR) is completed successfully, so that my custom code can adequately handle this file. I found no documentation for FTPFactory or FTP that helps me doing this. Should I overload the FTP object or some other object? How to wire everything up? I have done simple custom HTTP servers with twisted in the past and it was pleasantly easy, but I can find nearly no material about FTP.

share|improve this question

1 Answer

It looks like the following may do the trick

from twisted.protocols import ftp

class MyFTP (ftp.FTP):
    def ftp_STOR(self, path):
        d = super(MyFTP, self).ftp_STOR(path)

        d.addCallback( lambda _: self.onStorComplete(path) )

        return d

    def onStorComplete(self, path):
        # XXX your code here

 f = ftp.FTPFactory( some_portal_object )
 f.protocol = MyFTP
share|improve this answer
It didn't; the callback was invoked before the file transfer started (and the transfer is looping, using Filezilla). Also, my file isn't being stored. :\ – Ekevoo Mar 20 '12 at 17:38
ftp_STOR definitely returns a Deferred that only fires after the transfer is complete. Perhaps something else is going wrong with your program. – Jean-Paul Calderone Mar 20 '12 at 18:15
I based on the example I linked on my question. I'm noticing all write attempts are failing. I'll investigate this a bit further… – Ekevoo Mar 20 '12 at 20:49
So apparently that example does not write to disk. :( I'm considering just waiting for the FTP api+docs to mature and just take a pooling approach. – Ekevoo Mar 22 '12 at 21:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.