Skip to content

Commit 50d7bf1

Browse files
committed
New grunt grammar task for automatically building customized Grammar.js and Grammar.min.js.
1 parent fe15d69 commit 50d7bf1

File tree

6 files changed

+246
-186
lines changed

6 files changed

+246
-186
lines changed

BUILDING.md

+8
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,11 @@ Running "qunit:noWebRTC" (qunit) task
5656
Testing testNoWebRTC.html.........OK
5757
>> 206 assertions passed (213ms)
5858
```
59+
60+
## Changes in JsSIP grammar
61+
62+
If you modify `src/Grammar/src/Grammar.pegjs` then you need to recompile JsSIP grammar files. For that run the following task:
63+
```
64+
$ grunt grammar
65+
```
66+
And then build JsSIP again by running `grunt`.

grunt.js

+45-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/*global module:false*/
2+
23
module.exports = function(grunt) {
34

45
// Project configuration.
@@ -8,8 +9,7 @@ module.exports = function(grunt) {
89
banner: '/*! jsSIP v@<%= pkg.version %> jssip.net | jssip.net/license */'
910
},
1011
lint: {
11-
dist: 'dist/<%= pkg.name %>-<%= pkg.version %>.js',
12-
grunt: 'grunt.js'
12+
dist: 'dist/<%= pkg.name %>-<%= pkg.version %>.js'
1313
},
1414
concat: {
1515
dist: {
@@ -92,10 +92,48 @@ module.exports = function(grunt) {
9292
});
9393

9494
// Default task.
95-
grunt.registerTask('default', 'concat:dist lint min concat:post concat:post_min');
95+
grunt.registerTask('default', ['concat:dist', 'lint', 'min', 'concat:post', 'concat:post_min']);
9696

9797
// Test tasks.
98-
grunt.registerTask('testNoWebRTC', 'qunit:noWebRTC');
99-
grunt.registerTask('testWebRTC', 'qunit:WebRTC');
100-
grunt.registerTask('test', 'testNoWebRTC');
101-
};
98+
grunt.registerTask('testNoWebRTC', ['qunit:noWebRTC']);
99+
grunt.registerTask('test', ['testNoWebRTC']);
100+
101+
// Task for building JsSIP grammar.
102+
grunt.registerTask('grammar', function(){
103+
// First compile JsSIP grammar with PEGjs.
104+
console.log("grammar task: compiling JsSIP PEGjs grammar into Grammar.js ...");
105+
var done = this.async(); // This is an async task.
106+
var sys = require('sys');
107+
var exec = require('child_process').exec;
108+
var child;
109+
110+
child = exec('pegjs -e JsSIP.Grammar src/Grammar/src/Grammar.pegjs src/Grammar/dist/Grammar.js', function(error, stdout, stderr) {
111+
if (error == null) {
112+
// Then modify the generated Grammar.js file with custom changes.
113+
console.log("OK");
114+
console.log("grammar task: applying custom changes to Grammar.js ...");
115+
var fs = require('fs');
116+
var grammar = fs.readFileSync('src/Grammar/dist/Grammar.js').toString();
117+
var modified_grammar = grammar.replace(/throw new this\.SyntaxError\(([\s\S]*?)\);([\s\S]*?)}([\s\S]*?)return result;/, 'new this.SyntaxError($1);\n return -1;$2}$3return data;');
118+
fs.writeFileSync('src/Grammar/dist/Grammar.js', modified_grammar);
119+
console.log("OK");
120+
121+
// Then minify Grammar.js.
122+
console.log("grammar task: minifying Grammar.js ...");
123+
child = exec('cd src/Grammar/ && node minify.js', function(error, stdout, stderr) {
124+
if (error == null) {
125+
console.log("OK");
126+
done(); // Tell grunt that async task has succeeded.
127+
} else {
128+
sys.print('ERROR: ' + stderr);
129+
done(false); // Tell grunt that async task has failed.
130+
}
131+
});
132+
} else {
133+
sys.print('ERROR: ' + stderr);
134+
done(false); // Tell grunt that async task has failed.
135+
}
136+
});
137+
});
138+
139+
};

package.json

+4-3
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,9 @@
2020
"webrtc",
2121
"library"
2222
],
23-
"devDependencies": {
24-
"grunt": "0.3.17"
25-
},
23+
"devDependencies": {
24+
"grunt": "0.3.17",
25+
"pegjs": "0.7.0"
26+
},
2627
"license": "MIT"
2728
}

src/Grammar/README.md

+25-19
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,32 @@
1-
JsSIP Parser Grammar
2-
======================
1+
## JsSIP Parser Grammar
32

43
JsSIP uses [PEG.js](https://github.com/dmajda/pegjs) to build its parser grammar, a PEG based parser generator for JavaScript.
54

65
The grammar source is defined in PEG format in `src/Grammar.pegjs` file. It must be converted to JavaScript by using PEG.js
76

87

9-
PEG.js Installation
10-
------------------
8+
### PEG.js Installation
9+
1110

1211
In order to use the `pegjs` node command, install PEG.js globally:
12+
```
13+
$ npm install -g pegjs
14+
```
1315

14-
$ npm install -g pegjs
16+
### Compiling JsSIP Grammar
1517

18+
There are two ways for achieving this task:
1619

17-
Generating the Grammar parser from the Grammar source
18-
-----------------------------------------------------
20+
* Automatically by running `grunt grammar` in the JsSIP root directory.
21+
* Manually by following steps below one by one:
1922

20-
The following command converts the PEG grammar into a JsSIP module named `Grammar`. The output file is created in `dist/Grammar.js`.
2123

22-
$ pegjs -e JsSIP.Grammar src/Grammar.pegjs dist/Grammar.js
24+
#### Generating the Grammar parser from the Grammar source
25+
26+
The following command converts the PEG grammar into a JsSIP module named `Grammar`. The output file is created in `dist/Grammar.js`.
27+
```
28+
$ pegjs -e JsSIP.Grammar src/Grammar.pegjs dist/Grammar.js
29+
```
2330

2431
In case there is an error in the grammar, the command will throw a descriptive error.
2532

@@ -56,17 +63,16 @@ The changes to be done in `dist/Grammar.js` file are located at the end of the `
5663
toSource: function() { return this._source; }
5764
```
5865

59-
Minifying the Grammar parser
60-
-----------------------------
66+
#### Minifying the Grammar parser
6167

6268
[node-minify](https://github.com/srod/node-minify) is used in order to minify the generated grammar.
6369

64-
Install node-minify
65-
66-
$ npm install node-minify
67-
68-
Run the `minify.js` script with node command to minimize the grammar.
69-
70-
$ node minify.js
71-
70+
Install node-minify:
71+
```
72+
$ npm install node-minify
73+
```
74+
Run the `minify.js` script with node command to minimize the grammar:
75+
```
76+
$ node minify.js
77+
```
7278
This will generate the `dist/Grammar.min.js` file.

src/Grammar/dist/Grammar.js

+9-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)