summaryrefslogtreecommitdiff
path: root/conf
AgeCommit message (Collapse)Author
2017-01-29Add http output module skeletonSilvan Jegen
2017-01-27Differentiate between modules and main modulesSilvan Jegen
Allow several modules within a main module. We also start parsing the output main module (which does not have an "http" module yet).
2017-01-24Make sure the init functions of all modules are runSilvan Jegen
We also get the filter function constructor.
2017-01-20Introduce registrySilvan Jegen
We introduce a registry that contains maps to builder functions. These builder functions return the interface implementation of the modules specified in the configuration. We also make the input module type use the registry. All other module types still have to be converted.
2017-01-20Print filter module description as wellSilvan Jegen
2017-01-20Return module descriptionSilvan Jegen
For now it's mostly key-value pairs but it will most likely have to get more complex because of the if-statements.
2017-01-18Don't loop in advanceOneTokenSilvan Jegen
2017-01-18Merge branch 'writeownscanner'Silvan Jegen
This is not working correctly yet.
2017-01-15Implement Stringer interface for the token typeSilvan Jegen
2016-12-28Finish parsing of keyvaluesSilvan Jegen
2016-12-28Implement Peek()Silvan Jegen
2016-12-27Parse more of our current config formatSilvan Jegen
2016-12-26Fix "go vet" issueSilvan Jegen
2016-12-25Start writing the parserSilvan Jegen
2016-12-25Implement our own scannerSilvan Jegen
This allows us to record byte offset and line number in the token.
2016-12-25Implement lexer based on ScannerSilvan Jegen
We also add the skeleton of a recursive descent parser.
2016-12-11Add config parser skeletonSilvan Jegen