/src/main/java/org/redline_rpm/Main.java

http://github.com/craigwblake/redline · Java · 123 lines · 70 code · 12 blank · 41 comment · 5 complexity · 55d6d4b7d65dca54eb73189581daeda8 MD5 · raw file

  1. package org.redline_rpm;
  2. import org.redline_rpm.header.Architecture;
  3. import org.redline_rpm.header.Os;
  4. import org.redline_rpm.header.RpmType;
  5. import org.redline_rpm.payload.Contents;
  6. import java.io.File;
  7. import java.io.IOException;
  8. import java.net.InetAddress;
  9. import java.security.NoSuchAlgorithmException;
  10. import org.xml.sax.SAXException;
  11. import org.w3c.dom.Node;
  12. import static org.redline_rpm.header.RpmType.BINARY;
  13. import static org.redline_rpm.header.Architecture.NOARCH;
  14. import static org.redline_rpm.header.Os.LINUX;
  15. import static org.redline_rpm.payload.CpioHeader.DEFAULT_FILE_PERMISSION;
  16. /**
  17. * Main entry point for the Redline command line tool. The command line tool
  18. * uses a provided configuration file to generate an RPM file. Execution of this
  19. * tool may be scripted or called from third party software as needed to create
  20. * an RPM file.
  21. */
  22. public class Main {
  23. public static void main( String[] args) throws SAXException, NoSuchAlgorithmException, IOException {
  24. if ( args.length < 1) System.out.println( "Usage: java Main <config> <[file]...>");
  25. else new Main().run( new File( args[ 0]));
  26. }
  27. /**
  28. * Runs the tool using a configuration provided in the given file parameter. The configuration file
  29. * is expected to be well formed XML conforming to the Redline configuration syntax.
  30. *
  31. * @param file the configuration file to use
  32. * @throws SAXException if the provided file is not well formed XML
  33. * @throws NoSuchAlgorithmException if an operation attempted during RPM creation fails due
  34. * to a missing encryption algorithm
  35. * @throws IOException if an IO error occurs either in reading the configuration file, reading
  36. * an input file to the RPM, or during RPM creation
  37. */
  38. public void run( File file) throws SAXException, NoSuchAlgorithmException, IOException {
  39. XmlEditor editor = new XmlEditor();
  40. editor.read( file);
  41. run( editor, new File( "."));
  42. }
  43. /**
  44. * Runs the tool using a configuration provided in the given configuration and output file.
  45. *
  46. * @param editor the XML configuration file, parsed by the XmlEditor utility
  47. * @param destination the destination file to use in creating the RPM
  48. * @throws NoSuchAlgorithmException if an operation attempted during RPM creation fails due
  49. * to a missing encryption algorithm
  50. * @throws IOException if an IO error occurs either in reading the configuration file, reading
  51. * an input file to the RPM, or during RPM creation
  52. */
  53. public void run( XmlEditor editor, File destination) throws NoSuchAlgorithmException, IOException {
  54. editor.startPrefixMapping( "http://redline-rpm.org/ns", "rpm");
  55. Contents include = new Contents();
  56. for ( Node files : editor.findNodes( "rpm:files")) {
  57. try {
  58. editor.pushContext( files);
  59. int permission = editor.getInteger( "@permission", DEFAULT_FILE_PERMISSION);
  60. String parent = editor.getValue( "@parent");
  61. if ( !parent.endsWith( "/")) parent += "/";
  62. for ( Node file : editor.findNodes( "rpm:file")) {
  63. try {
  64. editor.pushContext( file);
  65. File source = new File( editor.getValue( "text()"));
  66. include.addFile( new File( parent, source.getName()).getPath(), source, editor.getInteger( "@permission", permission));
  67. } finally {
  68. editor.popContext();
  69. }
  70. }
  71. } finally {
  72. editor.popContext();
  73. }
  74. }
  75. run( editor, editor.getValue( "rpm:name/text()"), editor.getValue( "rpm:version/text()"), editor.getValue( "rpm:release/text()", "1"), include, destination);
  76. }
  77. /**
  78. * Runs the tool using the provided settings.
  79. *
  80. * @param editor the XML configuration file, parsed by the XmlEditor utility
  81. * @param name the name of the RPM file to create
  82. * @param version the version of the created RPM
  83. * @param release the release version of the created RPM
  84. * @param include the contents to include in the generated RPM file
  85. * @param destination the destination file to use in creating the RPM
  86. * @throws NoSuchAlgorithmException if an operation attempted during RPM creation fails due
  87. * to a missing encryption algorithm
  88. * @throws IOException if an IO error occurs either in reading the configuration file, reading
  89. * an input file to the RPM, or during RPM creation
  90. */
  91. public void run( XmlEditor editor, String name, String version, String release, Contents include, File destination) throws NoSuchAlgorithmException, IOException {
  92. Builder builder = new Builder();
  93. builder.setPackage( name, version, release);
  94. RpmType type = RpmType.valueOf( editor.getValue( "rpm:type", BINARY.toString()));
  95. builder.setType( type);
  96. Architecture arch = Architecture.valueOf( editor.getValue( "rpm:architecture", NOARCH.toString()));
  97. Os os = Os.valueOf( editor.getValue( "rpm:os", LINUX.toString()));
  98. builder.setPlatform( arch, os);
  99. builder.setSummary( editor.getValue( "rpm:summary/text()"));
  100. builder.setDescription( editor.getValue( "rpm:description/text()"));
  101. builder.setBuildHost( editor.getValue( "rpm:host/text()", InetAddress.getLocalHost().getHostName()));
  102. builder.setLicense( editor.getValue( "rpm:license/text()"));
  103. builder.setGroup( editor.getValue( "rpm:group/text()"));
  104. builder.setPackager( editor.getValue( "rpm:packager/text()", System.getProperty( "user.name")));
  105. builder.setVendor( editor.getValue( "rpm:vendor/text()", null));
  106. builder.setUrl( editor.getValue( "rpm:url/text()", null));
  107. builder.setProvides( editor.getValue( "rpm:provides/text()", name));
  108. builder.setFiles( include);
  109. builder.build( destination);
  110. }
  111. }