summaryrefslogtreecommitdiff
path: root/src/core/resource
AgeCommit message (Collapse)Author
2016-04-25Replace NodeVector by ManagedVector where NodeVector functionality is not ↵Andreas Stöckel
needed. Reduces calls to "Manager.registerEvent" to <10% of original value
2016-04-25clang compatibility: add missing default constructorAndreas Stöckel
2015-03-01Renamed domain to ontology.Benjamin Paassen
2015-02-18Limit context widthAndreas Stöckel
2015-02-18Fix missing trailing space in error messageAndreas Stöckel
2015-02-17Do not bother with to many type checks if we indicate that "all types are ↵Andreas Stöckel
allowed". Fixes part of the issues with bug #77
2015-02-17Improved error messagesAndreas Stöckel
2015-02-17Improved semantics of the return value of the autocomplete function: Empty ↵Andreas Stöckel
return value explicitly means that the file does not exist at all.
2015-02-17Improved auto-completion handling and error messages in ResourceRequest -- ↵Andreas Stöckel
perform autocompletion if the mimetype is not known and not if no extension is given. People might have files that contain dots without having an actual extension.
2015-02-16Using autocomplete in ResourceRequest to determine filename if no extension ↵Andreas Stöckel
is given
2015-02-16Added "autocomplete" function to ResourceLocator and RegistryAndreas Stöckel
2015-02-07Unified handling of references to Rtti instances: Now using pointers everywhereAndreas Stöckel
2015-02-03Fixed imports when ParserTypes are set to more general nodes.Andreas Stöckel
2015-02-03Got rid of warnings when including filesAndreas Stöckel
2015-02-02Importing files works nowAndreas Stöckel
2015-01-30Fixed setIntersection in ResourceRequestAndreas Stöckel
2015-01-30cycle detection for imports as well.Benjamin Paassen
2015-01-30some formatting stuff and cycle detection in include as well as repeated ↵Benjamin Paassen
import detection.
2015-01-28Returning again a single node as result of the import function (as this is ↵Andreas Stöckel
already explicitly checked for).
2015-01-28Validating nodes after they have been parsedAndreas Stöckel
2015-01-27Renamed "link" to "import"Andreas Stöckel
2015-01-27Fixed context not being shown when an exception was thrown in the parserAndreas Stöckel
2015-01-27Parsers do no longer return the node they have parsed (as this may be ↵Andreas Stöckel
ill-defined -- if a parser only parses a partial document via include, there may be many to no nodes that are returned). Parsers should just use the ParserScope.push funciton. All nodes pushed onto the top-level of the ParserScope are added treated as the nodes the parser has parsed. Adapted all code and all tests accordingly.
2015-01-27Added fork, join, checkUnwound and getTopLevelNodes functionality to ↵Andreas Stöckel
ParserScope and using it in the Manager
2015-01-27Removed dependency between "Project" model class and parser/resources. This ↵Andreas Stöckel
reduces coupling and was stupid beforehand.
2015-01-26Moving code for deferred Resolution and validation to "LINK" mode of Parser ↵Andreas Stöckel
-> this causes these operations whenever the top-level scope instance is destroyed, which is the last possible point at which deferred resolution can take place. Validation must come after deferred resolution.
2015-01-25Fixed missing break and context not being displayed if source file could not ↵Andreas Stöckel
be parsed
2015-01-25Removed default arguments -- as supportedTypes has to be supplied, these ↵Andreas Stöckel
make no sense.
2015-01-25Fixed compilationAndreas Stöckel
2015-01-25Restructures parser classes a little, removed Registry from ParserContext, ↵Andreas Stöckel
gave a ResourceManager instance to the Project, using ResourceRequest when including or linking files, thought through how "including" and "linking" are handled
2015-01-25Added functions for dealing with ResourceTypesAndreas Stöckel
2015-01-25Replaced stupid static ResourceUtils class with shiny new ResourceRequest ↵Andreas Stöckel
class and corresponding (unfinished) test
2015-01-24Fixed integer overflow bug in SourceContextReader, adapted TerminaLoggerTestAndreas Stöckel
2015-01-24Moved Terminal and TerminalLogger to own classes in new frontent folderAndreas Stöckel
2015-01-24Implemented SourceContextReader, added unit tests, implemented ↵Andreas Stöckel
SourceContextReader interface in ResourceManager, added LoggerTest
2015-01-23Fixed ResourceManager and ResourceUtilsAndreas Stöckel
2015-01-23Forward declaration of RttiSet does not workAndreas Stöckel
2015-01-23Implemented most functions in ResourceManagerAndreas Stöckel
2015-01-23Added ResourceUtils class containing helper functions for deducing resource ↵Andreas Stöckel
types.
2015-01-22BackupAndreas Stöckel
2015-01-20Adapted FileLocator unit tests, searching in the "UNKNOWN" ResourceType ↵Andreas Stöckel
search paths directly in ResoruceLocator instead of Registry
2015-01-20Refactored stuff surrounding the ResourceLocator class, implemented ↵Andreas Stöckel
StaticResourceLocator which can be used for registering static resources (mainly for testing or if certain resources need to be available from the executable)
2015-01-20Moved some files around and added new Resource classAndreas Stöckel