blob: ba981a27db0e0799e3d1e55d1348fcc032fecec8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
|
// **********************************************************************
//
// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************
//package Ice.Ant;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.BuildException;
import org.apache.tools.ant.DirectoryScanner;
import org.apache.tools.ant.types.FileSet;
import org.apache.tools.ant.taskdefs.ExecTask;
import org.apache.tools.ant.taskdefs.Execute;
import org.apache.tools.ant.taskdefs.PumpStreamHandler;
import org.apache.tools.ant.types.Commandline;
import org.apache.tools.ant.types.Commandline.Argument;
import org.apache.tools.ant.types.Path;
import org.apache.tools.ant.types.Reference;
import java.io.File;
import java.io.FileOutputStream;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.StringReader;
import java.io.BufferedReader;
import java.io.BufferedWriter;
/**
* An ant task for protoc.
*
* Attributes specific to protoc:
*
* translator - The pathname of the translator (default: "protoc").
* protocpath - The value for the --proto_path translator option.
* outputdir - The value for the --java_out translator option.
* dependencyfile - The file in which dependencies are stored (default: ".pbdepend").
*
* Example:
*
* <project ...>
* <taskdef name="protoc" classname="ProtocTask" />
* <property name="protoc.dir" value="../include/protoc"/>
* <target name="generate">
* <mkdir dir="tags" />
* <protoc tagdir="tags" outputdir="out">
* <fileset dir="${protoc.dir}">
* <include name="*.ice" />
* </fileset>
* </protoc>
* </target>
* </project>
*
* The <taskdef> element installs the protoctask task.
*/
public class ProtocTask extends org.apache.tools.ant.Task
{
public
ProtocTask()
{
_translator = null;
_outputDir = null;
_protocPath = null;
_outputDirString = null;
}
public void
setDependencyFile(File file)
{
_dependencyFile = file;
}
public void
setOutputdir(File dir)
{
_outputDir = dir;
_outputDirString = _outputDir.toString();
if(_outputDirString.indexOf(' ') != -1)
{
_outputDirString = '"' + _outputDirString + '"';
}
}
public void
setProtocpath(File dir)
{
_protocPath = dir.toString();
}
public void
setTranslator(File prog)
{
_translator = prog;
}
public FileSet
createFileset()
{
FileSet fileset = new FileSet();
_fileSets.add(fileset);
return fileset;
}
public void
execute()
throws BuildException
{
if(_fileSets.isEmpty())
{
throw new BuildException("No fileset specified");
}
//
// Read the set of dependencies for this task.
//
java.util.HashMap dependencies = readDependencies();
//
// Compose a list of the files that need to be translated. A
// file needs to translated if we can't find a dependency in
// the dependency table or if its dependency is not up-to-date
// anymore (the proto file changed since the dependency was
// last updated)
//
java.util.Vector buildList = new java.util.Vector();
java.util.Vector skipList = new java.util.Vector();
java.util.Iterator p = _fileSets.iterator();
while(p.hasNext())
{
FileSet fileset = (FileSet)p.next();
DirectoryScanner scanner = fileset.getDirectoryScanner(getProject());
scanner.scan();
String[] files = scanner.getIncludedFiles();
for(int i = 0; i < files.length; i++)
{
File proto = new File(fileset.getDir(getProject()), files[i]);
ProtoDependency depend = (ProtoDependency)dependencies.get(getTargetKey(proto.toString()));
if(depend == null || !depend.isUpToDate())
{
buildList.addElement(proto);
}
else
{
skipList.addElement(proto);
}
}
java.util.Iterator i = skipList.iterator();
while(i.hasNext())
{
File file = (File)i.next();
log("skipping " + file.getName());
}
}
//
// Run the translator
//
if(!buildList.isEmpty())
{
String translator;
if(_translator == null)
{
translator = "protoc";
}
else
{
translator = _translator.toString();
}
StringBuffer cmd = new StringBuffer();
//
// Add --java_out.
//
if(_outputDir != null)
{
cmd.append(" --java_out=");
cmd.append(stripDriveLetter(_outputDirString));
}
//
// Add --proto_path
//
if(_protocPath != null)
{
cmd.append(" --proto_path=");
cmd.append(stripDriveLetter(_protocPath));
}
//
// Add files to be translated
//
for(int i = 0; i < buildList.size(); i++)
{
File f = (File)buildList.elementAt(i);
cmd.append(" ");
String s = stripDriveLetter(f.toString());
if(s.indexOf(' ') != -1)
{
cmd.append('"' + s + '"');
}
else
{
cmd.append(s);
}
}
//
// Execute
//
log(translator + " " + cmd);
ExecTask task = (ExecTask)getProject().createTask("exec");
task.setFailonerror(true);
Argument arg = task.createArg();
arg.setLine(cmd.toString());
task.setExecutable(translator);
task.execute();
//
// Update dependency file.
//
for(int i = 0; i < buildList.size(); i++)
{
ProtoDependency depend = new ProtoDependency();
depend._timeStamp = new java.util.Date().getTime();
depend._dependency = ((File)buildList.elementAt(i)).toString();
dependencies.put(getTargetKey(depend._dependency), depend);
}
writeDependencies(dependencies);
}
}
private String
getTargetKey(String proto)
{
//
// Since the dependency file can be shared by several proto
// tasks we need to make sure that each dependency has a
// unique key. We use the name of the task, the output
// directory and the name of the proto file to be compiled.
//
// If there's two protoc tasks using the same dependency
// file, with the same output dir and which compiles the same
// protoc file they'll use the same dependency.
//
return "protoc " + _outputDir.toString() + " " + proto;
}
// This is to work around a bug with protoc, where it does not
// accept drive letters in path names. See
// http://bugzilla/bugzilla/show_bug.cgi?id=3349
//
private String
stripDriveLetter(String s)
{
if(s.length() > 1 && s.charAt(1) == ':')
{
return s.substring(2);
}
return s;
}
//
// Read the dependency file.
//
private java.util.HashMap
readDependencies()
{
if(_dependencyFile == null)
{
if(_outputDir != null)
{
_dependencyFile = new File(_outputDir, ".pbdepend");
}
else
{
_dependencyFile = new File(".pbdepend");
}
}
try
{
java.io.ObjectInputStream in = new java.io.ObjectInputStream(new java.io.FileInputStream(_dependencyFile));
java.util.HashMap dependencies = (java.util.HashMap)in.readObject();
in.close();
return dependencies;
}
catch(java.io.IOException ex)
{
}
catch(java.lang.ClassNotFoundException ex)
{
}
return new java.util.HashMap();
}
private void
writeDependencies(java.util.HashMap dependencies)
{
try
{
java.io.ObjectOutputStream out = new java.io.ObjectOutputStream(new FileOutputStream(_dependencyFile));
out.writeObject(dependencies);
out.close();
}
catch(java.io.IOException ex)
{
throw new BuildException("Unable to write dependencies in file " + _dependencyFile.getPath() + ": " + ex);
}
}
//
// A proto dependency.
//
// * the _timeStamp attribute contains the last time the proto
// file was compiled.
//
// * the _dependency attribute contains the .proto file.
//
private class ProtoDependency implements java.io.Serializable
{
private void writeObject(java.io.ObjectOutputStream out)
throws java.io.IOException
{
out.writeObject(_dependency);
out.writeLong(_timeStamp);
}
private void readObject(java.io.ObjectInputStream in)
throws java.io.IOException, java.lang.ClassNotFoundException
{
_dependency = (String)in.readObject();
_timeStamp = in.readLong();
}
public boolean
isUpToDate()
{
File dep = new File(_dependency);
if(!dep.exists() || _timeStamp < dep.lastModified())
{
return false;
}
return true;
}
public String _dependency;
public long _timeStamp;
}
private File _translator;
private File _dependencyFile;
private File _outputDir;
private String _outputDirString;
private String _protocPath;
private java.util.List _fileSets = new java.util.LinkedList();
}
|