author | eosterlund |
Wed, 14 Jun 2017 01:30:11 -0700 | |
changeset 46539 | c23c825bcfc2 |
parent 26067 | b32ccc3a76c9 |
permissions | -rw-r--r-- |
16147 | 1 |
/* |
24283
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
2 |
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
26067
b32ccc3a76c9
8055199: Tidy up Nashorn codebase for code standards (August 2014)
attila
parents:
24283
diff
changeset
|
3 |
* |
16147 | 4 |
* Redistribution and use in source and binary forms, with or without |
5 |
* modification, are permitted provided that the following conditions |
|
6 |
* are met: |
|
26067
b32ccc3a76c9
8055199: Tidy up Nashorn codebase for code standards (August 2014)
attila
parents:
24283
diff
changeset
|
7 |
* |
16147 | 8 |
* - Redistributions of source code must retain the above copyright |
9 |
* notice, this list of conditions and the following disclaimer. |
|
26067
b32ccc3a76c9
8055199: Tidy up Nashorn codebase for code standards (August 2014)
attila
parents:
24283
diff
changeset
|
10 |
* |
16147 | 11 |
* - Redistributions in binary form must reproduce the above copyright |
12 |
* notice, this list of conditions and the following disclaimer in the |
|
13 |
* documentation and/or other materials provided with the distribution. |
|
26067
b32ccc3a76c9
8055199: Tidy up Nashorn codebase for code standards (August 2014)
attila
parents:
24283
diff
changeset
|
14 |
* |
16147 | 15 |
* - Neither the name of Oracle nor the names of its |
16 |
* contributors may be used to endorse or promote products derived |
|
17 |
* from this software without specific prior written permission. |
|
26067
b32ccc3a76c9
8055199: Tidy up Nashorn codebase for code standards (August 2014)
attila
parents:
24283
diff
changeset
|
18 |
* |
16147 | 19 |
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS |
20 |
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, |
|
21 |
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|
22 |
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR |
|
23 |
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
|
24 |
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
25 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
|
26 |
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
|
27 |
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
|
28 |
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
|
29 |
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
30 |
*/ |
|
31 |
||
24283
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
32 |
// Usage: jjs uniq.js |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
33 |
// or: jjs uniq.js -- <file> |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
34 |
|
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
35 |
// omit repeated lines and print unique lines |
16147 | 36 |
|
24283
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
37 |
var BufferedReader = Java.type("java.io.BufferedReader"); |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
38 |
var FileReader = Java.type("java.io.FileReader"); |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
39 |
var InputStreamReader = Java.type("java.io.InputStreamReader"); |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
40 |
var System = Java.type("java.lang.System"); |
16147 | 41 |
|
24283
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
42 |
// use object as set - but insertion order preserved |
16147 | 43 |
var uniqueLines = {}; |
24283
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
44 |
var reader = arguments.length > 0 ? |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
45 |
new FileReader(arguments[0]) : |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
46 |
new InputStreamReader(System.in); |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
47 |
reader = new BufferedReader(reader); |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
48 |
|
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
49 |
// add unique lines |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
50 |
reader.lines().forEach(function(line) { |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
51 |
uniqueLines[line] = true; |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
52 |
}) |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
53 |
|
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
54 |
for (line in uniqueLines) { |
bda887c0088a
8042600: Add more samples in nashorn/samples directory
sundar
parents:
16151
diff
changeset
|
55 |
print(line); |
16147 | 56 |
} |