blob: e3349bd62c86bce5130e39027355b17b38c80987 [file] [log] [blame]
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -07001/*
2 * Copyright (C) 2008 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package util.build;
18
19import java.io.File;
20import java.io.FileInputStream;
21import java.io.FileOutputStream;
22import java.io.IOException;
23import java.nio.channels.FileChannel;
24import java.util.HashSet;
25import java.util.Set;
26
27abstract class BuildStep implements Comparable<BuildStep> {
28
29 BuildFile inputFile;
30 BuildFile outputFile;
31
32 static class BuildFile {
33 final File folder;
34 final File fileName;
35
36 BuildFile(String folder, String fileName) {
37 this.folder = new File(folder);
38 this.fileName = new File(this.folder, fileName);
39 }
Yohann Roussele5b72e22015-10-01 17:35:37 +020040 BuildFile(File file) {
41 this.folder = file.getParentFile();
42 this.fileName = file;
43 }
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070044
45 String getPath() {
46 return fileName.getAbsolutePath();
47 }
48
49 @Override
50 public int hashCode() {
51 return fileName.hashCode();
52 }
53
54 @Override
55 public boolean equals(Object obj) {
56 if (obj == null) return false;
57 if (this == obj) return true;
58 if (getClass() == obj.getClass()) {
59 BuildFile other = (BuildFile) obj;
60 return fileName.equals(other.fileName);
61 }
62 return false;
63 }
64 }
65
66 BuildStep(BuildFile inputFile, BuildFile outputFile) {
67 if (inputFile == null) {
68 throw new NullPointerException("inputFile is null");
69 }
70 if (outputFile == null) {
71 throw new NullPointerException("outputFile is null");
72 }
73 this.inputFile = inputFile;
74 this.outputFile = outputFile;
75 }
76
Yohann Roussele5b72e22015-10-01 17:35:37 +020077 BuildStep(File output) {
78 this.outputFile = new BuildFile(output);
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -070079 }
80
81 private Set<BuildStep> children;
82
83 boolean build() {
84 if (children != null) {
85 for (BuildStep child : children) {
86 if (!child.build()) {
87 return false;
88 }
89 }
90 }
91 return true;
92 }
93
94 @Override
95 public boolean equals(Object obj) {
96 if (obj == null) return false;
97 if (obj == this) return true;
98 return this.getClass() == obj.getClass();
99 }
100
101 @Override
102 public abstract int hashCode();
103
104 public void addChild(BuildStep child) {
105 if (children == null) {
106 children = new HashSet<BuildStep>();
107 }
108 children.add(child);
109 }
110
111 public static void copyFile(File in, File out) throws IOException {
112 FileChannel inChannel = new FileInputStream(in).getChannel();
113 FileChannel outChannel = new FileOutputStream(out).getChannel();
114 try {
115 inChannel.transferTo(0, inChannel.size(), outChannel);
116 } catch (IOException e) {
117 throw e;
118 } finally {
119 if (inChannel != null) inChannel.close();
120 if (outChannel != null) outChannel.close();
121 }
122 }
123
124 public int compareTo(BuildStep o) {
Yohann Roussele5b72e22015-10-01 17:35:37 +0200125 return (outputFile == o.outputFile ? 0 : outputFile.getPath().compareTo(
126 o.outputFile.getPath()));
Tsu Chiang Chuang9a223d72011-04-27 17:19:46 -0700127 }
128}