All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.tango.pogo.pogo_gui.tools.UpdateRelease Maven / Gradle / Ivy

//+======================================================================
// :  $
//
// Project:   Tango
//
// Description:  java source code for Tango manager tool..
//
// : pascal_verdier $
//
// Copyright (C) :      2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016
//						European Synchrotron Radiation Facility
//                      BP 220, Grenoble 38043
//                      FRANCE
//
// This file is part of Tango.
//
// Tango is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// 
// Tango is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.
// 
// You should have received a copy of the GNU General Public License
// along with Tango.  If not, see .
//
// :  $
//
//-======================================================================

package org.tango.pogo.pogo_gui.tools;

import java.io.File;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.List;


/**
 * This class is able to update release number with date
 *      and generate html ReleaseNote.java
 *
 * @author verdier
 */

public class UpdateRelease {
    private String release = null;
    private String fileName = null;
    private String notesPath= ".";
    private String packName = null;
    private String title = null;
    //===============================================================
    //===============================================================
    public UpdateRelease(String[] args) throws PogoException {
        checkArguments(args);
        if (release!=null && fileName!=null) {
            checkRelease();
            patchReleaseNumber();
        }
        if (notesPath!=null && packName!=null) {
            generateReleaseNotes();
        }
    }
    //===============================================================
    //===============================================================
    private void checkRelease() throws PogoException {
        if (release.endsWith("pom.xml")) {
            String code = ParserTool.readFile(release);
            int start = code.indexOf("");
            if (start>0) {
                start += "".length();
                int end = code.indexOf("-SNAPSHOT", start);
                // SNAPSHOT not found, get full release name
                if (end<0) end = code.indexOf("", start);
                if (end>0) {
                    release = code.substring(start, end);
                }
            }
        }
    }
    //===============================================================
    //===============================================================
    private void generateReleaseNotes() throws PogoException {
        String notesFile = "ReleaseNote";
        if (!new File(notesFile).exists()) {
            notesFile += "s";
            if (!new File(notesFile).exists()) {
                throw new PogoException(notesFile + " not found");
            }
        }
        String outCode = "\npackage " + packName+";\n\n";
        outCode += getComments();

        outCode += "public interface " + notesFile + " {\n";
        outCode += "\tString str = \n";
        outCode += getHtmlHeader();

        outCode += getHtmlNotes(notesFile);

        outCode += getHtmlFooter();
        outCode += "}";

        String fileName = notesPath+'/'+notesFile+".java";
        ParserTool.writeFile(fileName, outCode);
        System.out.println(fileName + "  has been generated.");
    }
    //===============================================================
    //===============================================================
    private String getHtmlNotes(String notesFile) throws PogoException {
        List inCode = ParserTool.readFileLines(notesFile, false);
        StringBuilder sb = new StringBuilder();
        for (String line : inCode) {
            line = checkLine(line);
            if (line.endsWith(":")) {
                sb.append("\t\t\"
  • ").append(line).append("
    \" + \n"); } else { sb.append("\t\t\"      ").append(line).append("
    \" + \n"); } } return sb.toString(); } //=============================================================== //=============================================================== private String checkLine(String line) { StringBuilder sb = new StringBuilder(); int start = 0; int end; while ((end=line.indexOf( "\"", start))>0) { sb.append(line.substring(start, end)).append("”"); start = end+1; } sb.append(line.substring(start)); return sb.toString(); } //=============================================================== //=============================================================== private String getHtmlHeader() { StringBuilder sb = new StringBuilder("\t\t\"\\n\" + \n" + "\t\t\"\\n\" + \n" + "\t\t\"\\n\" + \n" + "\t\t\" Release Note \\n\" + \n" + "\t\t\"\\n\" + \n" + "\t\t\"\\n\" + \n" + "\t\t\"

    \\n\" + \n"); if (title!=null) { sb.append("\t\t\"
    \t

    ").append(title).append("

    \\n\" + \n"); sb.append("\t\t\"\t(Generated ").append(getDate()).append(")

    \\n\" + \n"); } return sb.toString(); } //=============================================================== //=============================================================== private String getHtmlFooter() { return "\t\t\"\\n\" + \n\t\t\"\\n\"\n\t;\n"; } //=============================================================== //=============================================================== private String getComments() { return "/**\n * HTML code to display Release Notes for this package.\n"+ " * It is generated by Pogo classes from a text file.\n */\n\n"; } //=============================================================== //=============================================================== private void patchReleaseNumber() throws PogoException { String code = ParserTool.readFile(fileName); int start = code.indexOf("revNumber ="); if (start<0) { start = code.indexOf("releaseString ="); if (start<0) throw new PogoException("String releaseString Not Found in " + fileName); } start = code.indexOf('\"', start); start++; int end = code.indexOf('\"', start); String target = release + " - " + getDate(); System.out.println("Replacing "+code.substring(start, end)); System.out.println(" By " + target); ParserTool.writeFile(fileName, code.substring(0, start) + target + code.substring(end)); } //=============================================================== //=============================================================== private static String getDate() { SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss"); return simpleDateFormat.format(new Date()); } //=============================================================== //=============================================================== //=============================================================== //=============================================================== public void checkArguments(String[] args) { for (int i=0 ; i: version number to be patched"); System.out.println(" -file : file to patch release and date"); System.out.println(" -note_path : where ReleaseNotes.java must be generated"); System.out.println(" -package : package for ReleaseNotes.java class"); System.out.println(" -title : title added in ReleaseNotes.java"); System.out.println(); System.out.println("-release <version> could be:"); System.out.println(" -release <pom file>: version will be parsed in pom.xml specified file"); System.out.println(); System.exit(0); } //=============================================================== //=============================================================== //=============================================================== //=============================================================== public static void main(String[] args) { if (args.length==0) { UpdateRelease.displaySyntax(); } try { new UpdateRelease(args); } catch (PogoException e) { System.err.println(e.toString()); } catch (Exception e) { //System.err.println(e.toString()); e.printStackTrace(); } } } </code></pre> <br/> <br/> <div class='clear'></div> <!-- <aside class="related-items"> <section> <div class="panel panel-primary"> <div class="panel-heading margin-bottom">Related Artifacts</div> <div class=""> </div> </div> </section> <section> <div class="panel panel-primary"> <div class="panel-heading margin-bottom">Related Groups</div> <div class=""> </div> </div> </section> </aside> <div class='clear'></div> --></main> </div> <br/><br/> <div class="align-center">© 2015 - 2025 <a href="/legal-notice.php">Weber Informatics LLC</a> | <a href="/data-protection.php">Privacy Policy</a></div> <br/><br/><br/><br/><br/><br/> </body> </html>