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.

Below is the simple code snippet that illustrates the problem:

def external_dependencies(url, destination):
           # this never gets called
           print 'whatever!'
           # if isinstance(url, basestring):
           #            urllib.urlretrieve(url, destination)
           # else:
           #            for a, b in map(None, url, destination):
           #                       urllib.urlretrieve(a, b)
           return None

env = Environment()
env.Command(['http://archive.apache.org/dist/xmlgraphics/batik/batik-1.6.zip',
             'http://archive.apache.org/dist/commons/collections/binaries/commons-collections-3.0.tar.gz',
             'http://archive.apache.org/dist/commons/logging/binaries/commons-logging-1.0.4.tar.gz'],
            ['./thirdparty/batik/batik-1.6.zip',
             './thirdparty/commons-collections-3.0.tar.gz',
             './thirdparty/commons-logging-1.0.4.tar.gz'],
            external_dependencies)

When I'm trying to execute this, I get the following error:

scons: *** [http:/archive.apache.org/dist/commons/collections/binaries/commons-
collections-3.0.tar.gz] Source `thirdparty/batik/batik-1.6.zip' not found, 
needed by target `http:/archive.apache.org/dist/xmlgraphics/batik/batik-1.6.zip'.

(line breaks added for readability)

Obviously the destination cannot be found because it has not been downloaded yet, and the whole purpose of this operation is to download it.

How to override this behaviour? Validating arguments here is absolutely counter-productive.

EDIT:

A tiny update: I could get it to work in this way, but it feels wrong / hackish:

def external_dependencies(dummy, url, destination):
           if isinstance(url, basestring):
                      urllib.urlretrieve(url, destination)
           else:
                      for a, b in map(None, url, destination):
                                 urllib.urlretrieve(a, b)
           return None

env = Environment()
env.AddMethod(external_dependencies, 'ExternalDependencies')

env.ExternalDependencies(
           ['http://archive.apache.org/dist/xmlgraphics/batik/batik-1.6.zip',
            'http://archive.apache.org/dist/commons/collections/binaries/commons-collections-3.0.tar.gz',
            'http://archive.apache.org/dist/commons/logging/binaries/commons-logging-1.0.4.tar.gz'],
           ['./thirdparty/batik/batik-1.6.zip',
            './thirdparty/commons-collections-3.0.tar.gz',
            './thirdparty/commons-logging-1.0.4.tar.gz'])

Note the dummy argument in the external_dependencies - for some reason SCons will call this function passing the number of arguments as the first argument. So, it looks like the intended use was different.

share|improve this question

1 Answer

up vote 0 down vote accepted

The definition of the Command() builder is as follows:

Command(target, source, action, [key=val, ...])

So it seems like you ordered your parameters incorrectly. Im assuming the URL list is the source and the file list is the target, right?

If this is the case, you could either reorder the args, or just do the following:

Command(source=['http://archive.apache.org/dist/xmlgraphics/batik/batik-1.6.zip',
                'http://archive.apache.org/dist/commons/collections/binaries/commons-collections-3.0.tar.gz',
                'http://archive.apache.org/dist/commons/logging/binaries/commons-logging-1.0.4.tar.gz'],
        target=['./thirdparty/batik/batik-1.6.zip',
                './thirdparty/commons-collections-3.0.tar.gz',
                './thirdparty/commons-logging-1.0.4.tar.gz'],
        action=external_dependencies)

Im still not convinced this will work though, since SCons will probably assume that the url list is actually a list of file names and it may try to find them anyways, you'll have to test it.

The second option you tried isnt actually a builder, but just simply a function call, so the dependency checking probably wont be as you expect. As for the dummy argument you mention, Im pretty sure that will be the env that the function was called on, not the number of args.

share|improve this answer
Thanks for response, but as I've written that in the comment - the external_dependencies was never called, the error happens even before it would've been called. Re' the number of arguments - I'm pretty sure I'm correct, I just looked it up in the source (for me it's the line 222 in the /usr/lib/scons/SCons/Environment.py) – wvxvw Aug 31 '12 at 15:26
@wvxvw, regarding external_dependencies not being called: that makes sense, since SCons is trying to determine if it needs to call it, and it cant since it cant find the batik-1.6.zip Source file nor the others. Can you verify if you originally intended for the URLs to be the source or the target. – Brady Aug 31 '12 at 15:47
URLS needs to be the source. But I don't want it to verify it at all, what if I don't mind the URL to be absent and have my ways of dealing with that? Like for example have a fallback URL? Actually, if the source is down, but I have the files stored locally - I would still proceed with compilation. – wvxvw Aug 31 '12 at 17:52
@wvxvw, Ok, I understand. I think the best way to achieve this will be to use the second approach, whereby you're just calling a function, not a builder with its built-in dependency checking. – Brady Aug 31 '12 at 20:00
OK, thanks for the confirmation. Now that I think of it, perhaps I had to just omit the source and target at all and put the URLs in the additional arguments. – wvxvw Aug 31 '12 at 20:07

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.