/jxr/maven-jxr/maven-jxr-java/src/main/java/org/apache/maven/jxr/java/src/html/AbstractPass.java

https://github.com/apache/maven-sandbox · Java · 141 lines · 66 code · 17 blank · 58 comment · 4 complexity · 158c8c3b37aa525189a8434001c983b4 MD5 · raw file

  1. package org.apache.maven.jxr.java.src.html;
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. import java.io.File;
  21. import java.util.GregorianCalendar;
  22. import java.util.List;
  23. import java.util.StringTokenizer;
  24. import java.util.TimeZone;
  25. import org.apache.maven.jxr.java.src.GenerateHTMLJavaSrc;
  26. import org.apache.maven.jxr.java.src.JavaSrcOptions;
  27. /**
  28. * Abstract class for Pass.
  29. *
  30. * @author <a href="mailto:vincent.siveton@gmail.com">Vincent Siveton</a>
  31. * @version $Id$
  32. */
  33. abstract class AbstractPass
  34. {
  35. protected static final String DEFAULT_EXCLUDES = "**/*~,**/#*#,**/.#*,**/%*%,**/._*,**/CVS,**/CVS/**,"
  36. + "**/.cvsignore,**/SCCS,**/SCCS/**,**/vssver.scc,**/.svn,**/.svn/**,**/.DS_Store";
  37. protected static final String DEFAULT_DOCENCODING = "ISO-8859-1";
  38. private JavaSrcOptions options;
  39. /**
  40. * Default constructor
  41. *
  42. * @param options object
  43. */
  44. AbstractPass( JavaSrcOptions options )
  45. {
  46. if ( options == null )
  47. {
  48. throw new IllegalArgumentException( "options could not be null" );
  49. }
  50. this.options = options;
  51. }
  52. /**
  53. * @return the output dir
  54. * @see JavaSrcOptions#getDestDir()
  55. */
  56. String getDestDir()
  57. {
  58. return this.options.getDestDir();
  59. }
  60. /**
  61. * @return a String list of source dir.
  62. * @see JavaSrcOptions#getSrcDirs()
  63. */
  64. List getSrcDirs()
  65. {
  66. return this.options.getSrcDirs();
  67. }
  68. /**
  69. * Getter for the javasrc options
  70. *
  71. * @return the options
  72. */
  73. JavaSrcOptions getOptions()
  74. {
  75. return this.options;
  76. }
  77. /**
  78. * Returns the path to the top level of the source hierarchy from the files
  79. * of a given class.
  80. *
  81. * @param packageName the package to get the backup path for
  82. * @return
  83. * @returns the path from the package to the top level, as a string
  84. */
  85. static String getBackupPath( String packageName )
  86. {
  87. StringTokenizer st = new StringTokenizer( packageName, "." );
  88. String backup = "";
  89. int dirs = 0;
  90. dirs = st.countTokens();
  91. for ( int j = 0; j < dirs; j++ )
  92. {
  93. backup = backup + "../";
  94. }
  95. return backup;
  96. }
  97. static void println( String description )
  98. {
  99. System.out.print( "\n" );
  100. System.out.print( description );
  101. }
  102. /**
  103. * Method createDirs
  104. *
  105. * @param f
  106. */
  107. static void createDirs( File f )
  108. {
  109. String parentDir = f.getParent();
  110. File directory = new File( parentDir );
  111. if ( !directory.exists() )
  112. {
  113. directory.mkdirs();
  114. }
  115. }
  116. /**
  117. * @return an HTML comment with generated time.
  118. */
  119. static String getGeneratedBy()
  120. {
  121. return "<!-- Generated by Maven JXR " + GenerateHTMLJavaSrc.VERSION + " on "
  122. + new GregorianCalendar( TimeZone.getDefault() ).getTime().toString() + " -->";
  123. }
  124. }