|
Groovy example source code file (Main.groovy)
The Groovy Main.groovy source code
/*
* Copyright 2003-2011 the original author or authors.
*
* Licensed 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
*
* http://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.codehaus.groovy.tools.groovydoc
import org.codehaus.groovy.tools.shell.util.Logger
import org.codehaus.groovy.tools.shell.util.MessageSource
import org.codehaus.groovy.tools.shell.IO
import org.codehaus.groovy.tools.groovydoc.gstringTemplates.GroovyDocTemplateInfo
import groovy.io.FileType
/**
* Main CLI entry-point for <tt>groovydoc.
*
* @author Paul King
*/
class Main {
private static final MessageSource messages = new MessageSource(Main)
private static File styleSheetFile;
private static File overviewFile
private static File destDir
private static String windowTitle
private static String docTitle
private static String header
private static String footer
private static Boolean author
private static Boolean noScripts
private static Boolean noMainForScripts
private static Boolean privateScope
private static Boolean packageScope
private static Boolean publicScope
private static Boolean protectedScope
private static Boolean debug = false
private static String[] sourcepath
private static List<String> sourceFilesToDoc
private static List<String> remainingArgs
private static List<String> exclusions
static void main(final String[] args) {
IO io = new IO()
Logger.io = io
def cli = new CliBuilder(usage : 'groovydoc [options] [packagenames] [sourcefiles]', writer: io.out, posix:false)
cli.help(longOpt: 'help', messages['cli.option.help.description'])
cli._(longOpt: 'version', messages['cli.option.version.description'])
cli.verbose(messages['cli.option.verbose.description'])
cli.quiet(messages['cli.option.quiet.description'])
// TODO is debug needed?
cli._(longOpt: 'debug', messages['cli.option.debug.description'])
cli.classpath(messages['cli.option.classpath.description'])
cli.cp(longOpt: 'classpath', messages['cli.option.cp.description'])
cli.d(longOpt: 'destdir', args:1, argName: 'dir', messages['cli.option.destdir.description'])
cli.author(messages['cli.option.author.description'])
cli.noscripts(messages['cli.option.noscripts.description'])
cli.nomainforscripts(messages['cli.option.nomainforscripts.description'])
cli.overview(args:1, argName: 'file', messages['cli.option.overview.description'])
cli.public(messages['cli.option.public.description'])
cli.protected(messages['cli.option.protected.description'])
cli.package(messages['cli.option.package.description'])
cli.private(messages['cli.option.private.description'])
cli.windowtitle(args:1, argName: 'text', messages['cli.option.windowtitle.description'])
cli.doctitle(args:1, argName: 'html', messages['cli.option.doctitle.description'])
cli.header(args:1, argName: 'html', messages['cli.option.header.description'])
cli.footer(args:1, argName: 'html', messages['cli.option.footer.description'])
cli.exclude(args:1, argName: 'pkglist', messages['cli.option.exclude.description'])
cli.stylesheetfile(args:1, argName: 'path', messages['cli.option.stylesheetfile.description'])
cli.sourcepath(args:1, argName: 'pathlist', messages['cli.option.sourcepath.description'])
def options = cli.parse(args)
if (options.help) {
cli.usage()
return
}
if (options.version) {
io.out.println(messages.format('cli.info.version', GroovySystem.version))
return
}
if (options.stylesheetfile) {
styleSheetFile = new File(options.stylesheetfile)
}
if (options.overview) {
overviewFile = new File(options.overview)
}
destDir = new File(options.d ?: '.')
if (options.exclude) {
exclusions = options.exclude.tokenize(':')
}
if (options.sourcepath) {
def list = []
options.sourcepaths.each {
list.addAll(it.tokenize(File.pathSeparator))
}
sourcepath = list.toArray()
}
author = Boolean.valueOf(options.author) ?: false
noScripts = Boolean.valueOf(options.noscripts) ?: false
noMainForScripts = Boolean.valueOf(options.nomainforscripts) ?: false
packageScope = Boolean.valueOf(options.package) ?: false
privateScope = Boolean.valueOf(options.private) ?: false
protectedScope = Boolean.valueOf(options.protected) ?: false
publicScope = Boolean.valueOf(options.public) ?: false
int scopeCount = 0
if (packageScope) scopeCount++
if (privateScope) scopeCount++
if (protectedScope) scopeCount++
if (publicScope) scopeCount++
if (scopeCount == 0) {
protectedScope = true
} else if (scopeCount > 1) {
System.err.println "groovydoc: Error - More than one of -public, -private, -package, or -protected specified."
cli.usage()
return
}
windowTitle = options.windowtitle ?: ''
docTitle = options.doctitle ?: ''
header = options.header ?: ''
footer = options.footer ?: ''
if (options.Ds) {
def values = options.Ds
values.each {
setSystemProperty(it as String)
}
}
if (options.verbose) {
io.verbosity = IO.Verbosity.VERBOSE
}
if (options.debug) {
io.verbosity = IO.Verbosity.DEBUG
debug = true
}
if (options.quiet) {
io.verbosity = IO.Verbosity.QUIET
}
remainingArgs = options.arguments()
if (!remainingArgs) {
System.err.println "groovydoc: Error - No packages or classes specified."
cli.usage()
return
}
execute()
}
static void execute() {
Properties properties = new Properties()
properties.put("windowTitle", windowTitle)
properties.put("docTitle", docTitle)
properties.put("footer", footer)
properties.put("header", header)
properties.put("privateScope", privateScope.toString())
properties.put("protectedScope", protectedScope.toString())
properties.put("publicScope", publicScope.toString())
properties.put("packageScope", packageScope.toString())
properties.put("author", author.toString())
properties.put("processScripts", (!noScripts).toString())
properties.put("includeMainForScripts", (!noMainForScripts).toString())
properties.put("overviewFile", overviewFile?.absolutePath ?: "")
def links = new ArrayList<LinkArgument>();
collectSourceFileNames(remainingArgs, sourcepath, exclusions)
GroovyDocTool htmlTool = new GroovyDocTool(
new ClasspathResourceManager(), // we're gonna get the default templates out of the dist jar file
sourcepath,
GroovyDocTemplateInfo.DEFAULT_DOC_TEMPLATES,
GroovyDocTemplateInfo.DEFAULT_PACKAGE_TEMPLATES,
GroovyDocTemplateInfo.DEFAULT_CLASS_TEMPLATES,
links,
properties
)
htmlTool.add(sourceFilesToDoc)
FileOutputTool output = new FileOutputTool()
htmlTool.renderToOutput(output, destDir.canonicalPath)
// try to override the default stylesheet with custom specified one if needed
if (styleSheetFile != null) {
try {
new File(destDir, "stylesheet.css").text = styleSheetFile.text
} catch (IOException e) {
println "Warning: Unable to copy specified stylesheet '" + styleSheetFile.absolutePath + "'. Using default stylesheet instead. Due to: " + e.message
}
}
}
static collectSourceFileNames(List<String> remainingArgs, String[] sourceDirs, List
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Main.groovy source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.