Skip to content

Commit 8c9ab6f

Browse files
committed
2 parents 05473bf + 5818bf9 commit 8c9ab6f

File tree

3 files changed

+325
-0
lines changed

3 files changed

+325
-0
lines changed

doc/examples.md

+244
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,244 @@
1+
#PipelineScript Examples
2+
3+
###print
4+
5+
PipelineScript
6+
```
7+
print "hello world"
8+
```
9+
10+
Java
11+
```java
12+
System.out.println("hello world");
13+
```
14+
15+
Output
16+
```
17+
hello world
18+
```
19+
20+
###var_text
21+
22+
PipelineScript
23+
```
24+
text x = "foobar"
25+
print x
26+
```
27+
28+
Java
29+
```java
30+
String x = "foobar";
31+
System.out.println(x);
32+
```
33+
34+
Output
35+
```
36+
foobar
37+
```
38+
39+
###var_num
40+
41+
PipelineScript
42+
```
43+
num x = 42
44+
print x
45+
```
46+
47+
Java
48+
```java
49+
double x = 42;
50+
System.out.println(x);
51+
```
52+
53+
Output
54+
```
55+
42.0
56+
```
57+
58+
###var_bool
59+
60+
PipelineScript
61+
```
62+
bool x = true
63+
print x
64+
```
65+
66+
Java
67+
```java
68+
boolean x = true;
69+
System.out.println(x);
70+
```
71+
72+
Output
73+
```
74+
true
75+
```
76+
77+
###var_array
78+
(not yet implemented)
79+
80+
PipelineScript
81+
```
82+
num[] x = [1, 2, 3]
83+
print x
84+
```
85+
86+
Java
87+
```java
88+
double[] x = new double[]{1, 2, 3};
89+
System.out.println(x);
90+
```
91+
92+
Output
93+
```
94+
1.0 2.0 3.0
95+
```
96+
97+
###var_table
98+
(not yet implemented)
99+
100+
PipelineScript
101+
```
102+
table x = [[1, 2], [3, 4]]
103+
print x
104+
```
105+
106+
Java
107+
```java
108+
Table x = new Table(new double[][]{{1, 2}, {3, 4}});
109+
System.out.println(x);
110+
```
111+
112+
Output
113+
```
114+
1.0 2.0
115+
3.0 4.0
116+
```
117+
118+
###var_graph
119+
(not yet implemented)
120+
121+
PipelineScript
122+
```
123+
graph x = 3[[1, 2], [1, 3], [2, 3]]
124+
print x
125+
```
126+
127+
Java
128+
```java
129+
Graph x = new Graph(3, new int[][]{{1, 2}, {3, 4}});
130+
System.out.println(x);
131+
```
132+
133+
Output
134+
```
135+
3
136+
1 2
137+
3 4
138+
```
139+
140+
###arith_add
141+
142+
PipelineScript
143+
```
144+
num x = 4
145+
num y = 2
146+
print x + y
147+
```
148+
149+
Java
150+
```java
151+
double x = 4;
152+
double y = 2;
153+
System.out.println(x + y);
154+
```
155+
156+
Output
157+
```
158+
6.0
159+
```
160+
161+
###arith_sub
162+
163+
PipelineScript
164+
```
165+
num x = 4
166+
num y = 2
167+
print x + y
168+
```
169+
170+
Java
171+
```java
172+
double x = 4;
173+
double y = 2;
174+
System.out.println(x - y);
175+
```
176+
177+
Output
178+
```
179+
2.0
180+
```
181+
182+
###arith_mult
183+
184+
PipelineScript
185+
```
186+
num x = 4
187+
num y = 2
188+
print x * y
189+
```
190+
191+
Java
192+
```java
193+
double x = 4;
194+
double y = 2;
195+
System.out.println(x * y);
196+
```
197+
198+
Output
199+
```
200+
8.0
201+
```
202+
203+
###arith_div
204+
205+
PipelineScript
206+
```
207+
num x = 4
208+
num y = 2
209+
print x / y
210+
```
211+
212+
Java
213+
```java
214+
double x = 4;
215+
double y = 2;
216+
System.out.println(x / y);
217+
```
218+
219+
Output
220+
```
221+
2.0
222+
```
223+
224+
###text_concat
225+
226+
PipelineScript
227+
```
228+
text x = "foo"
229+
text y = "bar"
230+
print x + " " + y
231+
```
232+
233+
Java
234+
```java
235+
String x = "foo";
236+
String y = "bar";
237+
System.out.println(x + " " + y);
238+
```
239+
240+
Output
241+
```
242+
foo bar
243+
```
244+

java/FileManager.java

+61
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
package pipelinescript.java;
2+
3+
import java.io.BufferedReader;
4+
import java.io.FileNotFoundException;
5+
import java.io.FileReader;
6+
import java.io.IOException;
7+
import java.util.ArrayList;
8+
import java.util.HashMap;
9+
import java.util.List;
10+
import java.util.Map;
11+
12+
public class FileManager {
13+
Map<String, String> fileMap;
14+
public FileManager(){
15+
this.fileMap = new HashMap<>();
16+
}
17+
public void create(String variable, String filepath){
18+
fileMap.put(variable,filepath);
19+
}
20+
public void delete(String variable){
21+
fileMap.remove(variable);
22+
}
23+
public void move(String variable, String filepath){
24+
fileMap.put(variable, filepath);
25+
}
26+
public void set(String variable, Object value){
27+
28+
}
29+
30+
public Object get(String variable){
31+
32+
return new Object();
33+
}
34+
// make sure it points proper CSV file
35+
public Graph getGraphFromCSV(String variable){
36+
String path = fileMap.get(variable);
37+
BufferedReader br = null;
38+
String line = "";
39+
String cvsSplitBy = "\t";
40+
List<String[]> rtn = null;
41+
try {
42+
br = new BufferedReader(new FileReader(path));
43+
} catch (FileNotFoundException e) {
44+
// TODO Auto-generated catch block
45+
e.printStackTrace();
46+
}
47+
try {
48+
rtn = new ArrayList<>();
49+
while ((line = br.readLine()) != null) {
50+
String[] l = line.split(cvsSplitBy);
51+
rtn.add(l);
52+
}
53+
} catch (IOException e) {
54+
// TODO Auto-generated catch block
55+
e.printStackTrace();
56+
}
57+
58+
return new Graph(rtn);
59+
}
60+
61+
}

java/FileManagerTest.java

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package pipelinescript.java;
2+
3+
import org.junit.Assert;
4+
import org.junit.Test;
5+
6+
public class FileManagerTest {
7+
protected FileManager filemanager = new FileManager();
8+
9+
//filemanager = new FileManager();
10+
String [][]qtable = {{"0","1","1"},{"1","2","2"},{"0","2","4"}};
11+
Graph gr = new Graph(qtable);
12+
13+
@Test
14+
public void testCase0() {
15+
filemanager.create("test0", "./TestFile.csv");
16+
Graph g2 = filemanager.getGraphFromCSV("test0");
17+
Assert.assertEquals(g2 , gr);
18+
}
19+
20+
}

0 commit comments

Comments
 (0)