Master module for collecting reports for the CogniCity framework
DOI for current stable release v2.0.0:
http://cognicity.info/cognicity/api-docs/cognicity-reports/index.html
- NodeJS version 4.2.1 or compatible
- PostgreSQL version 9.2 or later, with PostGIS version 2.0 or compatible
- Check package.json for details
If you're going to commit changes to the JavaScript, be sure to run 'npm test' first - and fix any issues that it complains about, otherwise the build will fail when you push the commit.
Download the source code for cognicity-reports from github: http://github.com/smart-facility/cognicity-reports or view the CogniCity installation documentation at http://cognicity.info.
Install the node dependencies in package.json using NPM: npm install
. You will need to repeat that for each of the submodules (in the submodule directories).
To build on OS X we recommend using homebrew to install node, npm, and required node modules as follows:
brew install node
npm install
To build on Windows we recommend installing all dependencies (making sure to use all 32 bit or all 64 bit, depending on your architecture) plus following the instructions (for Windows 7 follow the Windows 7/8 instructions) for node-gyp and then:
- You need to add C:\Program Files\PostgreSQL\9.3\bin (modifying that location if necessary to point to the installed version of PostgreSQL) to path so the build script finds
pg_config
, and - You need to create the %APPDATA%\npm folder and run cmd (and hence npm) as administrator. %APPDATA% is usually under C:\Users\your_username\AppData\Remote.
- You may need to specify the version of the build tools installed by adding the argument
--msvs_version=2013
to thenpm
command (substituting the appropriate version) Then you can runnpm install
.
You will need at least one data source configured to run the reports module.
Cognicity data sources are included as submodules of this master reports module.
You will need to configure the reports module to use at least one of them (see Configuration section below).
Data sources must have the following properties:
An index.js file must be present in the top level of the module.
The file must export a function which constructs a new instance of the data source. The method takes an instance of the reports object as an argument, and the method signature is:
function constructor( reports ) {
// Return new instance - e.g.: return new PowertrackDataSource( reports, config );
}
The index.js file in turn can specify a config file specific to the submodule.
The data source object must implement the following method to start receiving data:
/** Begin receiving data from the source */
function start() {}
And optionally can implement the following method to shutdown:
/** Stop receiving data from the source */
function stop() {}
The data source can implement caching behaviour, used to continue processing if the database is temporarily offline, by implementing both of the following methods:
/** Stop realtime processing, continue to retrieve data but delay processing */
function enableCacheMode() {}
/** Resume realtime processing and immediately process any cached data */
function disableCacheMode() {}
App configuration parameters are stored in a configuration file which is parsed by app.js. See reports-config.js and sample.env for an example configuration.
- dataSources - List of data source folder names which the module will run when started
- level - info or debug are most useful here, debug will give you more verbose logging output
- maxFileSize - max size (in bytes) of each log file before a new one is created
- maxFiles - number of log files to retain
- logDirectory - Specify a full path to the log directory. If not specified, the application directory will be used.
- conString - PostgreSQL connection details string (see node-postgres module documenation)[https://github.com/brianc/node-postgres]
- postgres tables as defined in database schema
- reconnectionDelay - Delay between reconnection attempts if postgres connection lost
- reconnectionAttempts - Number of times to attempt to reconnect before dying
- see the cognicity-schema project for schema files
During development, the app can be run using node like so:
node app.js config.js
For deployment, the app can be run as a background process using the pm2 process manager.
To install pm2, run:
sudo npm install pm2 -g
The app can then be started using
pm2 start processes.json
To have pm2 started on OS startup run
pm2 startup
and then run the command as per the instructions that prints out. If that command errors then you may have to specify the system (note that systemd should be used on CentOS 7). Note that if the process is not running as root (recommended) you will need to change /etc/init.d/pm2-init.sh
to set export PM2_HOME="/path/to/user/home/.pm2"
, as per these instructions
The file processes.json contains a number of options that can be set, including the name of the process (default: "harvester") and the watch list. At the moment any paths or files starting with . (including .git), node_modules, git, test folders, and all *.log files will be ignored, but any other changes (e.g. to a config file, or to the code itself) will automatically result in a restart of the process. Refer to the documentation for more options in the processes.json file.
For further details refer to the README for pm2.
- Winston writes to project-name.log (and project-name#.log if configured for multiple files)
- The log directory can be configured, by default it is the project directory
Note that the documentation here is for this master reports module, and each submodule has their own set of tests run in a similar manner. Please refer to the submodule documentation for further information.
To run the full set of tests, run:
npm test
This will run the following tests:
JSHint will run on all JavaScript files in the root folder and test folders.
Running the script:
npm run jshint
This will print an error to the screen if any problems are found.
Mocha will run all unit tests in the test folder and can be run with the following script:
npm run mocha
The test output will tell you how many tests passed and failed.
There is a git pre-commit hook which will run the 'npm test' command before your commit and will fail the commit if testing fails.
To use this hook, copy the file from 'git-hooks/pre-commit' to '.git/hooks/pre-commit' in your project folder.
cp git-hooks/pre-commit .git/hooks/
To build the JSDoc documentation run the following npm script:
npm run build-docs
This will generate the API documentation in HTML format in the docs
folder, where you can open it with a web browser.
To build test code coverage documentation, run the following npm script:
npm run coverage
This will run istanbul code coverage over the full mocha test harness and produce HTML documentation in the directory coverage
where you can open it with a web browser.
The release procedure is as follows:
- Update the CHANGELOG.md file with the newly released version, date, and a high-level overview of changes. Commit the change.
- Create a tag in git from the current head of master. The tag version should be the same as the version specified in the package.json file - this is the release version.
- Update the version in the package.json file and commit the change.
- Further development is now on the updated version number until the release process begins again.
This software is released under the GPLv3 License. See License.txt for details.