Updated GSoC 2014 Ideas (markdown)

This commit is contained in:
Varriount 2014-02-11 10:50:07 -08:00
parent 39b1442340
commit 0f0fb91450
1 changed files with 25 additions and 4 deletions

View File

@ -1,5 +1,5 @@
# Introduction
Below is a list of project ideas for the 2014 GSoC Application for Nimrod. You will need to spend a considerable amount of time experimenting with the Nimrod programming language before you attempt these projects.
Below is a list of project ideas for the 2014 GSoC Application for Nimrod. All these projects require familiarity with the nimrod programming, or at minimum, experience with similar programming languages such as C, C#, Java, Python, etc.
# Projects
@ -20,9 +20,12 @@ Below is a list of project ideas for the 2014 GSoC Application for Nimrod. You w
...
**Fix/Expand Compiler as a Service features**
_Skill Requirements: Command line argument parsing, minimal knowledge of compiler internals and theory_
* Fix https://github.com/Araq/Nimrod/issues/804, which makes `idetools` unusable.
* Provide commands to execute macros. Allow for IDEs to quickly get the code they generate with different inputs.
___
**Allow bootstrap-time integration of the nimrod executable with the standard library**
* Allow the nimrod bootstrap process to integrate the nimrod standard library source code and other associated resources into the nimrod binary, to be used by the nimrod binary when compiling source code. The included library modules should be overridable, either by a switch passed to the nimrod executable, or by placing an actually library file in a pre-determined path.
@ -30,38 +33,56 @@ Below is a list of project ideas for the 2014 GSoC Application for Nimrod. You w
## Standard Library
**Integrate and expand new async io module**
___
**Enhance the filesystem monitoring module "fsmonitor.nim"**
* Allow the fsmonitor module to work on Windows by using native api's to gather information about changes in monitored files and directories.
* Revise the fsmonitor module api to decouple unix/linux file handle paradigms (such as using sockets.poll) from the api, allowing easier implementations of native backends.
_Skill Requirements/Preferences: Knowledge of the Microsoft Windows api_
* Allow the fsmonitor module to work on Microsoft Windows by using native api's to gather information about changes in monitored files and directories.
* Revise the fsmonitor module api to decouple unix/linux file handle paradigms (such as using the poll method in in the sockets module) from the api, allowing easier implementations of multiple native backends.
* Integrate the fsmonitor module's polling mechanism into the new asynchronous io modules.
___
**Add a cross-platform stat()-like procedure to the operating system module "os.nim"**
_Skill Requirements/Preferences: Knowledge of file system api's for Linux, MacOSX, or Microsoft Windows_
* Implement a procedure which uses native stat-like calls on Linux, Mac, Windows, and other operating systems to gather detailed information about specific file system objects. Allow the bypassing of symlinks and hardlinks, where possible.
___
**Enhance and expand standard library documentation**
_Skill Requirements/Preferences: Basic writing and documentation skills_
* Ensure that documentation exists for all public methods and modules
* Create and design new CSS and HTML layouts for the documentation, to better fit with the main website
* Add search capabilities to the documentation
___
**Add documentation to the nimrod compiler internals**
_Skill Requirements/Preferences: Basic writing and documentation skills_
* Add comments to the compiler internals, documenting the various mechansisms and mechanics the compiler uses to analyze and transform nimrod code to the code of the specified backend.
___
**Improve times module**
_Skill Requirements/Preferences: Knowledge of date time representations, native time api's_
* Fix limitations to do with time intervals, specifically subtracting a TTimeInterval from a TTimeInfo.
* Provide a ``$`` for TTimeInterval. Goal is to be able to get timing info like "5 minutes ago".
___
**Add an implementation of the ISAAC psuedorandom number generator**
* Create a pure-nimrod implementation of the [[ISAAC Random Number Generator|http://burtleburtle.net/bob/rand/isaacafa.html]]
___
**Wrap and test the Qt framework**
## Tools & Infrastructure
**Update and refactor nimrod builder**
* Reduce the number of assumptions the nimrod builder makes about its host system, in order to reduce configuration restrictions. Assumptions include location and usage of external tools, such as git.
___
**Implement re2nim, a lexer generator for nimrod**
* Model it after re2c or the Ragel state machine generator
___
**Implement a Nimrod backend for the Ragel state machine generator**
* http://www.complang.org/ragel/