You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
702 B
23 lines
702 B
possible dependencies:
|
|
|
|
- unix pattern __foo/*
|
|
- object: __foo//bar, __foo/bar
|
|
- singleton with object_id: __foo/singleton
|
|
- singleton without object_id: __foo/
|
|
|
|
solving dependencies:
|
|
|
|
solve_dep(object, run_list):
|
|
- list = [me]
|
|
- if status == IN_DEPENDENCY:
|
|
fail: circular dependency
|
|
- status = IN_DEPENDENCY
|
|
- create_list_of_deps(object)
|
|
- try pattern expansion
|
|
- for each dependency:
|
|
if object does not exist:
|
|
fail
|
|
else:
|
|
list.append(solve_dep(object, run_list)):
|
|
- status == IN_LIST
|
|
- return [me, dependencies [, dependencies of dependencies]]
|
|
|