Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
Apache Ant Source Code Files
Apache Ant Source Code Files are inside the Apache Ant source package file
like apache-ant-1.10.10-src.zip.
Unzip the source package file and go to the "src/main" sub-directory,
you will see source code files.
Here is the list of Java source code files of the Apache Ant 1.10.10 in \Users\fyicenter\apache-ant-1.10.10\src\main:
✍: FYIcenter.com
⏎ org/apache/tools/ant/taskdefs/optional/depend/AntAnalyzer.java
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package org.apache.tools.ant.taskdefs.optional.depend;
import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import java.util.Vector;
import org.apache.tools.ant.types.resources.ZipResource;
import org.apache.tools.ant.util.depend.AbstractAnalyzer;
import org.apache.tools.zip.ZipFile;
/**
* An analyzer which uses the depend task's bytecode classes to analyze
* dependencies
*
*/
public class AntAnalyzer extends AbstractAnalyzer {
/**
* Determine the dependencies of the configured root classes.
*
* @param files a vector to be populated with the files which contain
* the dependency classes
* @param classes a vector to be populated with the names of the
* dependency classes.
*/
@Override
protected void determineDependencies(Vector<File> files, Vector<String> classes) {
// we get the root classes and build up a set of
// classes upon which they depend
Set<String> dependencies = new HashSet<>();
Set<File> containers = new HashSet<>();
Set<String> toAnalyze = new HashSet<>(Collections.list(getRootClasses()));
Set<String> analyzedDeps = new HashSet<>();
int count = 0;
int maxCount = isClosureRequired() ? MAX_LOOPS : 1;
while (!toAnalyze.isEmpty() && count++ < maxCount) {
analyzedDeps.clear();
for (String classname : toAnalyze) {
dependencies.add(classname);
File container = null;
try {
container = getClassContainer(classname);
} catch (IOException ioe) {
// ignore
}
if (container != null) {
containers.add(container);
try (InputStream inStream = container.getName().endsWith(".class")
? Files.newInputStream(Paths.get(container.getPath()))
: ZipResource.getZipEntryStream(new ZipFile(container.getPath(), "UTF-8"),
classname.replace('.', '/') + ".class")) {
ClassFile classFile = new ClassFile();
classFile.read(inStream);
analyzedDeps.addAll(classFile.getClassRefs());
} catch (IOException ioe) {
// ignore
}
}
}
toAnalyze.clear();
// now recover all the dependencies collected and add to the list.
analyzedDeps.stream().filter(className -> !dependencies.contains(className))
.forEach(toAnalyze::add);
}
// pick up the last round of dependencies that were determined
dependencies.addAll(analyzedDeps);
files.removeAllElements();
files.addAll(containers);
classes.removeAllElements();
classes.addAll(dependencies);
}
/**
* Indicate if this analyzer can determine dependent files.
*
* @return true if the analyzer provides dependency file information.
*/
@Override
protected boolean supportsFileDependencies() {
return true;
}
}
⏎ org/apache/tools/ant/taskdefs/optional/depend/AntAnalyzer.java
Or download all of them as a single archive file:
File name: apache-ant-1.10.10-fyi.zip File size: 2392938 bytes Release date: 2021-04-17 Download
⇐ Download Apache Ant Source Package
2021-07-10, ≈316🔥, 0💬
Popular Posts:
JDK 17 jdk.javadoc.jmod is the JMOD file for JDK 17 Java Document tool, which can be invoked by the ...
JDK 11 jdk.jlink.jmod is the JMOD file for JDK 11 JLink tool, which can be invoked by the "jlink" co...
JDK 1.1 source code directory contains Java source code for JDK 1.1 core classes: "C:\fyicenter\jdk-...
JDK 17 jdk.jdeps.jmod is the JMOD file for JDK 17 JDeps tool, which can be invoked by the "jdeps" co...
ANTLR is a powerful parser generator for multiple programming languages including Java. ANTLR contai...