ll.make – Object oriented make replacement
ll.make provides tools for building projects.
Like make it allows you to specify dependencies between files and actions to be executed when files don’t exist or are out of date with respect to one of their sources. But unlike make you can do this in an object oriented way and targets are not only limited to files.
Relevant classes are:
- Project, which is the container for all actions in a project and
- Action(and subclasses), which are used to transform input data and read and write files (or other entities like database records).
A simple script that copies a file foo.txt to bar.txt
reencoding it from "latin-1" to "utf-8" in the process looks like
this:
from ll import make
class MyProject(make.Project):
        name = "Acme.MyProject"
        def create(self):
                make.Project.create(self)
                source = self.add(make.FileAction("foo.txt"))
                temp = source.callattr("decode", "iso-8859-1")
                temp = temp.callattr("encode", "utf-8")
                target = self.add(make.FileAction("bar.txt", temp))
                self.writecreatedone()
p = MyProject()
p.create()
if __name__ == "__main__":
        p.build("bar.txt")
- ll.make.filechanged(key)[source]
- Get the last modified date (or - bigbang, if the file doesn’t exist).
- class ll.make.Level[source]
- Bases: - object- Stores information about the recursive execution of - Actions.
- ll.make.report(func)[source]
- Standard decorator for - Action.get()methods.- This decorator handles proper reporting of nested action calls. If it isn’t used, only the output of calls to - Project.writestep()will be visible to the user.
- exception ll.make.RedefinedTargetWarning[source]
- Bases: - Warning- Warning that will be issued when a target is added to a project and a target with the same key already exists. 
- exception ll.make.UndefinedTargetError[source]
- Bases: - KeyError- Exception that will be raised when a target with the specified key doesn’t exist within the project. 
- ll.make.getoutputs(project, since, input)[source]
- Recursively iterate through the object - input(if it’s a- tuple,- listor- dict) and return a tuple containing:- An object ( - data) of the same structure as- input, where every action object encountered is replaced with the output of that action;
- A timestamp ( - changed) which the newest timestamp among all the change timestamps of the actions encountered.
 - If none of the actions has any data newer than - since(i.e. none of the actions produced any new data)- datawill be- nodata.
- class ll.make.Action[source]
- Bases: - object- An - Actionis responsible for transforming input data into output data. It may have no, one or many inputs which themselves may be other actions. It fetches, combines and transforms the output data of those actions and returns its own output data.- get(project, since)[source]
- This method (i.e. the implementations in subclasses) is the workhorse of - ll.make.- get()must return the output data of the action if this data has changed since- since(which is a- datetime.datetimeobject in UTC). If the data hasn’t changed since- sincethe special object- nodatamust be returned.- In both cases the action must make sure that the data is internally consistent, i.e. if the input data is the output data of other actions - selfhas to ensure that those other actions update their data too, independent from the fact whether- get()will return new data or not.- Two special values can be passed for - since:- bigbang
- This timestamp is older than any timestamp that can appear in real life. Since all data is newer than this, - get()must always return output data.
- bigcrunch
- This timestamp is newer than any timestamp that can appear in real life. Since there can be no data newer than this, - get()can only return output data in this case if ensuring internal consistency resulted in new data.
 - In all cases - get()must set the instance attribute- changedto the timestamp of the last change to the data before returning. In most cases this if the newest- changedtimestamp of the input actions.
 - execute(project, *args, **kwargs)[source]
- Execute the action: transform the input data in - argsand- kwargsand return the resulting output data. This method must be implemented in subclasses.
 - getkey()[source]
- Get the nearest key from - selfor its inputs. This is used by- ModuleActionfor the filename.
 - call(*args, **kwargs)[source]
- Return a - CallActionfor calling- selfs output with positional arguments from- argsand keyword arguments from- kwargs.
 - getattr(attrname)[source]
- Return a - GetAttrActionfor getting- selfs attribute named- attrname.
 - callattr(attrname, *args, **kwargs)[source]
- Return a - CallAttrActionfor calling- selfs attribute named- attrnamewith positional arguments from- argsand keyword arguments from- kwargs.
 - __iter__()[source]
- Return an iterator over the input actions of - self.
 - iterallinputs()[source]
- Return an iterator over all input actions of - self(i.e. recursively).
 - findpaths(input)[source]
- Find dependency paths leading from - selfto the other action- input. I.e. if- selfdepends directly or indirectly on- input, this generator will produce all paths- pwhere- p[0] is selfand- p[-1] is inputand- p[i+1] in p[i]for all- iin- range(len(p)-1).
 
- class ll.make.ObjectAction[source]
- Bases: - Action- An - ObjectActionreturns an object.
- class ll.make.TransformAction[source]
- Bases: - Action- A - TransformActiondepends on exactly one input action and transforms the input data into output data.
- class ll.make.CollectAction[source]
- Bases: - TransformAction- A - CollectActionis a- TransformActionthat simply outputs its input data unmodified, but updates a number of other actions in the process.- addinputs(*otherinputs)[source]
- Register all actions in - otherinputsas additional actions that have to be updated before- selfis updated.
 
- class ll.make.PhonyAction[source]
- Bases: - Action- A - PhonyActiondoesn’t do anything. It may depend on any number of additional input actions which will be updated when this action gets updated. If there’s new data from any of these actions, a- PhonyActionwill return- None(and- nodataotherwise as usual).- __init__(*inputs, **kwargs)[source]
- Create a - PhonyActionobject.- docdescribes the action and is printed by the method- Project.writephonytargets().
 - addinputs(*inputs)[source]
- Register all actions in - inputsas additional actions that have to be updated once- selfis updated.
 
- class ll.make.FileAction[source]
- Bases: - TransformAction- A - FileActionis used for reading and writing files (and other objects providing the appropriate interface).- __init__(key, input=None, encoding=None, errors=None)[source]
- Create a - FileActionobject with- keyas the “filename”.- keymust be an object that provides a method- open()for opening readable and writable streams to the file.- inputis the data written to the file (or the action producing the data).- encodingis the encoding to be used for reading/writing. If- encodingis- Nonebinary i/o will be used.- errorsis the codec error handling name for encoding/decoding text.
 - write(project, data)[source]
- Write - datato the file and return it.
 - read(project)[source]
- Read the content from the file and return it. 
 - get(project, since)[source]
- If a - FileActionobject doesn’t have an input action it reads the input file and returns the content if the file has changed since- since(otherwise- nodatais returned).- If a - FileActionobject does have an input action and the output data from this input action is newer than the file- self.keythe data will be written to the file. Otherwise (i.e. the file is up to date) the data will be read from the file.
 - chmod(mode=420)[source]
- Return a - ModeActionthat will change the file permissions of- selfto- mode.
 - chown(user=None, group=None)[source]
- Return an - OwnerActionthat will change the user and/or group ownership of- self.
 
- class ll.make.MkDirAction[source]
- Bases: - TransformAction- This action creates the a directory (passing through its input data). - __init__(key, mode=511)[source]
- Create a - MkDirActioninstance.- mode(which defaults to- 0o777) will be used as the permission bit pattern for the new directory.
 - execute(project, data)[source]
- Create the directory with the permission bits specified in the constructor. 
 
- class ll.make.PipeAction[source]
- Bases: - TransformAction- This action pipes the input through an external shell command. - __init__(input, command)[source]
- Create a - PipeActioninstance.- commandis the shell command to be executed (which must read it’s input from stdin and write its output to stdout).
 
- class ll.make.CacheAction[source]
- Bases: - TransformAction- A - CacheActionis a- TransformActionthat passes through its input data, but caches it, so that it can be reused during the same build round.
- class ll.make.GetAttrAction[source]
- Bases: - TransformAction- This action gets an attribute from its input object. 
- class ll.make.CallAction[source]
- Bases: - Action- This action calls a function or any other callable object with a number of arguments. Both positional and keyword arguments are supported and the function and the arguments can be static objects or actions. 
- class ll.make.CallAttrAction[source]
- Bases: - Action- This action calls an attribute of an object with a number of arguments. Both positional and keyword arguments are supported and the object, the attribute name and the arguments can be static objects or actions. 
- class ll.make.CommandAction[source]
- Bases: - TransformAction- This action executes a system command (via - os.system()) and passes through the input data.- __init__(command, input=None)[source]
- Create a new - CommandActionobject.- commandis the command that will executed when- execute()is called.
 
- class ll.make.ModeAction[source]
- Bases: - TransformAction- ModeActionchanges file permissions and passes through the input data.- __init__(input=None, mode=420)[source]
- Create an - ModeActionobject.- mode(which defaults to- 0644) will be use as the permission bit pattern.
 - execute(project, data, mode)[source]
- Change the permission bits of the file - self.getkey().
 
- class ll.make.OwnerAction[source]
- Bases: - TransformAction- OwnerActionchanges the user and/or group ownership of a file and passes through the input data.- __init__(input=None, user=None, group=None)[source]
- Create a new - OwnerActionobject.- usercan either be a numerical user id or a user name or- None. If it is- Noneno user ownership will be changed. The same applies to- group.
 - execute(project, data, user, group)[source]
- Change the ownership of the file - self.getkey().
 
- class ll.make.ModuleAction[source]
- Bases: - TransformAction- This action will turn the input string into a Python module. - __init__(input=None)[source]
- Create an - ModuleAction.- This object must have an input action (which might be a - FileActionthat creates the source file).
 - addinputs(*inputs)[source]
- Register all actions in - inputsas modules used by this module. These actions must be- ModuleActionobjects too.- Normally it isn’t necessary to call the method directly. Instead fetch the required module inside your module like this: - from ll import make mymodule = make.currentproject.get("mymodule.py") - This will record your module as depending on - mymodule, so if- mymodulechanges, your module will be reloaded too. For this to work you need to have an- ModuleActionadded to the project with the key- "mymodule.py".
 
- class ll.make.FOPAction[source]
- Bases: - TransformAction- This action transforms an XML string (containing XSL-FO) into PDF. For it to work Apache FOP is required. The command line is hardcoded but it’s simple to overwrite the class attribute - commandin a subclass.
- class ll.make.Project[source]
- Bases: - dict- A - Projectcollects all- Actionobjects from a project. It is responsible for initiating the build process and for generating a report about the progress of the build process.- strtimedelta(delta)[source]
- Return a nicely formatted and colored string for the - datetime.timedeltavalue- delta.- deltamay also be- Nonein with case- "0"will be returned.
 - strdatetime(dt)[source]
- Return a nicely formatted and colored string for the - datetime.datetimevalue- dt.
 - strcounter(counter)[source]
- Return a nicely formatted and colored string for the counter value - counter.
 - strerror(text)[source]
- Return a nicely formatted and colored string for the error text - text.
 - strkey(key)[source]
- Return a nicely formatted and colored string for the action key - key.
 - straction(action)[source]
- Return a nicely formatted and colored string for the action - action.
 - __setitem__(key, target)[source]
- Add the action - targetto- selfas a target and register it under the key- key.
 - add(target, key=None)[source]
- Add the action - targetas a target to- self. If- keyis not- None,- targetwill be registered under this key, otherwise it will be registered under its own key (i.e.- target.key).
 - __getitem__(key)[source]
- Return the target with the key - key. If an key can’t be found, it will be wrapped in a- ll.url.URLobject and retried. If- keystill can’t be found a- UndefinedTargetErrorwill be raised.
 - has_key(key)[source]
- Return whether the target with the key - keyexists in the project.
 - __contains__(key)[source]
- Return whether the target with the key - keyexists in the project.
 - create()[source]
- Create all dependencies for the project. Overwrite in subclasses. - This method should only be called once, otherwise you’ll get lots of - RedefinedTargetWarnings. But you can call- clear()to remove all targets before calling- create(). You can also use the method- recreate()for that.
 - argparser()[source]
- Return an - argparseparser for parsing the command line arguments. This can be overwritten in subclasses to add more arguments.
 - parseargs(args=None)[source]
- Use the parser returned by - argparser()to parse the argument sequence- args, modify- selfaccordingly and return the result of the parsers- parse_args()call.
 - get(target)[source]
- Get up-to-date output data from the target - target(which must be an action registered with- self(or the id of one). During the call the global variable- currentprojectwill be set to- self.
 - build(*targets)[source]
- Rebuild all targets in - targets. Items in- targetsmust be actions registered with- self(or their ids).
 - buildwithargs(args=None)[source]
- For calling make scripts from the command line. - argsdefaults to- sys.argv. Any positional arguments in the command line will be treated as target ids. If there are no positional arguments, a list of all registered- PhonyActionobjects will be output.
 - write(*texts)[source]
- All screen output is done through this method. This makes it possible to redirect the output (e.g. to logfiles) in subclasses. 
 - writeln(*texts)[source]
- All screen output is done through this method. This makes it possible to redirect the output (e.g. to logfiles) in subclasses. 
 - writeerror(*texts)[source]
- Output an error. 
 - warn(warning, stacklevel)[source]
- Issue a warning through the Python warnings framework 
 - writestacklevel(level, *texts)[source]
- Output - textsindented- levellevels.
 - writestack(*texts)[source]
- Output - textsindented properly for the current nesting of action execution.
 - writestep(action, *texts)[source]
- Output - textsas the description of the data transformation done by the action- arction.
 - writenote(action, *texts)[source]
- Output - textsas the note for the data transformation done by the action- action.
 - writecreatedone()[source]
- Can be called at the end of an overwritten - create()to report the number of registered targets.
 - writephonytargets()[source]
- Show a list of all - PhonyActionobjects in the project and their documentation.
 - findpaths(target, source)[source]
- Find dependency paths leading from the action - targetto the action- source.