summaryrefslogtreecommitdiff
path: root/src/buildstream/_loader
Commit message (Expand)AuthorAgeFilesLines
* loader.py: Remove workspace handling in element collectionDarius Makovsky2019-09-241-5/+1
* Remove workspace mounting for sandboxesDarius Makovsky2019-09-241-1/+1
* Support loading 'workspace'-kind sourcesDarius Makovsky2019-09-241-7/+28
* Address no-else-raise pylint warningJames Ennis2019-09-061-10/+13
* _loader.py: Cache how many Elements we loadJames Ennis2019-09-041-0/+6
* _loader/types.pyx: Disallow explicitly setting 'strict' to FalseTristan Van Berkom2019-08-311-0/+13
* Implement strict dependency semanticsTristan Van Berkom2019-08-314-6/+23
* _loader: Detect and reject duplicated dependenciesDaniel Silverstone2019-08-081-4/+24
* _message.py: Use element_name & element_key instead of unique_idtpollard/messageobjectTom Pollard2019-08-081-1/+1
* Fix up of some spelling mistakesRebecca Grayson2019-07-261-1/+1
* Render progress information for loading and processing elementsJonathan Maw2019-07-261-7/+14
* loader: Move sort_dependencies to loadelement as a cython methodbschubert/optimize-loaderBenjamin Schubert2019-07-262-75/+78
* loadelement: Move loadelement to CythonBenjamin Schubert2019-07-262-29/+54
* loader: Don't pickle caches for child jobs, they are not needed thereDaniel Silverstone2019-07-261-0/+5
* Make ChildJobs and friends picklableAngelos Evripiotis2019-07-241-0/+25
* _exceptions.py: Align LoadError() parameter orderingtpollard/loaderrorTom Pollard2019-07-182-36/+28
* node: Add 'get_str_list' on 'MappingNode'Benjamin Schubert2019-07-171-1/+1
* _pipeline.py, loader.py: Move Element._preflight() to new_from_meta()James Ennis2019-07-161-1/+0
* _yaml: Split Node-related parts into 'node.pyx'Benjamin Schubert2019-07-153-21/+22
* _yaml: Remove 'node_get_provenance' and add 'Node.get_provenance'Benjamin Schubert2019-07-152-3/+3
* types: rework dependency to always get a 'Node' as dep and remove provenanceBenjamin Schubert2019-07-151-9/+4
* _yaml: Remove 'node_validate' and replace by 'MappingNode.validate_keys'Benjamin Schubert2019-07-152-5/+3
* _yaml: Create 'from_dict' on Node and remove node creation methodsBenjamin Schubert2019-07-152-6/+6
* _yaml: Remove 'node_del' and support `del mapping[key]`Benjamin Schubert2019-07-152-3/+3
* _yaml: Remove 'node_get' and migrate all remaining calls to new APIBenjamin Schubert2019-07-151-2/+0
* _yaml: Introduce 'get_sequence()' and 'sequence_at()'/'mapping_at()'Benjamin Schubert2019-07-152-12/+10
* _yaml: Add 'as_str()' on ScalarNode and 'get_scalar()' on MappingNodeBenjamin Schubert2019-07-152-8/+8
* _yaml: add 'get_mapping()' to MappingNodeBenjamin Schubert2019-07-151-5/+5
* _yaml: Introduce a 'Mapping' Node classBenjamin Schubert2019-07-151-1/+1
* _loader/loadelement: rm unused 'deps' memberAngelos Evripiotis2019-07-091-1/+0
* Refactor, use context.messenger directlyAngelos Evripiotis2019-07-051-1/+1
* loader.py: Check source cache for subproject fetchingJürg Billeter2019-07-031-1/+1
* Handle subproject fetching in the Stream classJürg Billeter2019-06-251-3/+6
* Always fetch subprojects as neededJürg Billeter2019-06-251-34/+17
* _loader/types: Use range() instead of enumerate in extract_depends_from_nodeBenjamin Schubert2019-06-071-2/+2
* _loader/types: Use an accumulator to speed up _extract_depends_from_nodeBenjamin Schubert2019-06-071-15/+8
* _loader/types: add type information on _extract_depends_from_nodeBenjamin Schubert2019-06-071-11/+15
* _loader/types: Use helper function for extract_depends_from_nodeBenjamin Schubert2019-06-071-17/+30
* _loader: Move extract_depends_from_node from loadelement to typesBenjamin Schubert2019-06-073-51/+47
* _loader/types: type values wherever possibleBenjamin Schubert2019-06-061-8/+13
* _loader/types: Make Dependency a cdef classBenjamin Schubert2019-06-061-1/+6
* _loader/types: cimport yaml functions for better speedBenjamin Schubert2019-06-061-8/+8
* _loader/types: move to a cython packageBenjamin Schubert2019-06-061-0/+0
* _loader/types: use type(x) is str instead of isintanceBenjamin Schubert2019-06-061-1/+1
* _loader/loader: cythonize valid_chars_nameBenjamin Schubert2019-06-052-31/+54
* _yaml.pyx: Forbid expected_type=Mapping, and remove isinstance checkBenjamin Schubert2019-06-031-7/+6
* _loader/loade{r,lement}.py: Do not re-collect already collected elementsdanielsilverstone-ct/iterative-loader-bitsDaniel Silverstone2019-05-302-4/+12
* loader.py: Make _collect_element() iterativeDaniel Silverstone2019-05-301-14/+41
* loader.py: Make _sort_dependencies() a static iterative methodDaniel Silverstone2019-05-301-10/+13
* loader.py: Rewrite _check_circular_deps() to be iterativeDaniel Silverstone2019-05-301-34/+38