/* * CDDL HEADER START * * The contents of this file are subject to the terms of the * Common Development and Distribution License (the "License"). * You may not use this file except in compliance with the License. * * See LICENSE.txt included in this distribution for the specific * language governing permissions and limitations under the License. * * When distributing Covered Code, include this CDDL HEADER in each * file and include the License file at LICENSE.txt. * If applicable, add the following below this CDDL HEADER, with the * fields enclosed by brackets "[]" replaced with your own identifying * information: Portions Copyright [yyyy] [name of copyright owner] * * CDDL HEADER END */ /* * Copyright (c) 2007, 2010, Oracle and/or its affiliates. All rights reserved. */ package org.opensolaris.opengrok.history; import java.io.BufferedReader; import java.io.ByteArrayInputStream; import java.io.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.text.DateFormat; import java.text.ParseException; import java.util.ArrayList; import java.util.Map; import java.util.logging.Level; import java.util.logging.Logger; import org.opensolaris.opengrok.configuration.Configuration; import org.opensolaris.opengrok.configuration.RuntimeEnvironment; import org.opensolaris.opengrok.util.Executor; import org.opensolaris.opengrok.util.IOUtils; import org.opensolaris.opengrok.util.StringUtils; /** * Parse a stream of Git log comments. */ class GitHistoryParser implements Executor.StreamHandler { private static final Logger logger = Logger.getLogger(GitHistoryParser.class.getName()); private enum ParseState { HEADER, MESSAGE, FILES } private String myDir; private History history; private GitRepository repository = new GitRepository(); private static final String SVN_ID_PREFIX = " git-svn-id: "; /** * Process the output from the log command and insert the HistoryEntries * into the history field. * * @param input The output from the process * @throws java.io.IOException If an error occurs while reading the stream */ @Override public void processStream(InputStream input) throws IOException { BufferedReader in = null; try { in = new BufferedReader(repository.newLogReader(input)); process(in); } finally { IOUtils.close(in); } } private void process(BufferedReader in) throws IOException { Configuration cfg = RuntimeEnvironment.getConfig(); DateFormat df = repository.getDateFormat(); ArrayList entries = new ArrayList(); String aDate = null; history = new History(); HistoryEntry entry = null; String uuid = repository.getSvnUUID(); if (uuid != null) { uuid = "@" + uuid; } ParseState state = ParseState.HEADER; String s = in.readLine(); while (s != null) { if (state == ParseState.HEADER) { if (s.startsWith("commit")) { if (entry != null) { entries.add(entry); } entry = new HistoryEntry(); entry.setActive(true); String commit = s.substring("commit".length()).trim(); entry.setRevision(commit); } else if (s.startsWith("Author:") && entry != null) { s = s.substring("Author:".length()).trim(); // strip off the uuid if this is a git-svn repo. Per default // git generates for unknown authors: // ^Author: ${user} <${user}@${uuid}> if (uuid != null && s.startsWith(uuid, s.length() - uuid.length() - 1)) { s = s.substring(0, s.lastIndexOf('<', s.length() - uuid.length() -1) -1); } entry.setAuthor(s); } else if (s.startsWith("AuthorDate:") && entry != null) { // TBD: Perhaps we should add this to the history entry as well aDate = s.substring("AuthorDate:".length()).trim(); } else if (s.startsWith("CommitDate:") && entry != null) { String dateString = s.substring("CommitDate:".length()).trim(); try { entry.setDate(df.parse(dateString)); aDate = null; } catch (ParseException pe) { logger.warning("Failed to parse commit date " + s + ": " + pe.getMessage()); logger.log(Level.FINE, "process", pe); } } else if (StringUtils.isOnlyWhitespace(s)) { // We are done reading the heading, start to read the message state = ParseState.MESSAGE; // The current line is empty - the message starts on the // next line (to be parsed below). s = in.readLine(); } } if (state == ParseState.MESSAGE) { if ((s.length() == 0) || Character.isWhitespace(s.charAt(0))) { if (entry != null) { int i = 0, k; if (uuid != null && s.startsWith(SVN_ID_PREFIX)) { i = s.indexOf('@', SVN_ID_PREFIX.length()+4) + 1; k = s.indexOf(' ', i); if (i > 0 && k > 0) { s = s.substring(i, k); entry.setOldRevision(s); } else { i = 0; } } if (i == 0) { entry.appendMessage(s); } } } else { // This is the list of files after the message - add them state = ParseState.FILES; } } if (state == ParseState.FILES) { if (StringUtils.isOnlyWhitespace(s) || s.startsWith("commit")) { state = ParseState.HEADER; continue; // Parse this line again - do not read a new line } if (entry != null) { try { File f = new File(myDir, s); entry.addFile(cfg.getPathRelativeToSourceRoot(f, 0)); } catch (FileNotFoundException e) { //NOPMD // If the file is not located under the source root, // ignore it (bug #11664). } } } s = in.readLine(); } if (entry != null) { if (aDate != null) { // no commitDate found? Strange! Use authorDate than. try { entry.setDate(df.parse(aDate)); } catch (ParseException pe) { logger.warning("Failed to parse author date " + s + ": " + pe.getMessage()); logger.log(Level.FINE, "process", pe); } } entries.add(entry); } history.setHistoryEntries(entries); } /** * Parse the history for the specified file. * * @param file the file to parse history for * @param repos Pointer to the SubversionReporitory * @return object representing the file's history */ History parse(File file, Repository repos, String sinceRevision) throws HistoryException { myDir = repos.getDirectoryName() + File.separator; repository = (GitRepository) repos; try { Executor executor = repository.getHistoryLogExecutor(file, sinceRevision); int status = executor.exec(true, this); if (status != 0) { throw new HistoryException("Failed to get history for '" + file.getAbsolutePath() + "' - Exit code " + status); } } catch (IOException e) { throw new HistoryException("Failed to get history for '" + file.getAbsolutePath() + "'", e); } return history; } /** * Parse the given string. * * @param buffer The string to be parsed * @return The parsed history * @throws IOException if we fail to parse the buffer */ History parse(String buffer) throws IOException { myDir = RuntimeEnvironment.getConfig().getSourceRoot(); processStream(new ByteArrayInputStream(buffer.getBytes("UTF-8"))); return history; } }