Searched refs:history (Results 1 - 25 of 117) sorted by relevance

12345

/opengrok-jel/src/org/opensolaris/opengrok/history/
H A DRepository.java23 package org.opensolaris.opengrok.history;
63 * @return {@code true} if the repository can get history for the given file.
71 * @return {@code true} if the repository can get history for directories
76 * Get the history log for the specified file or directory for all changesets.
77 * @param file the file to get the history for (canonical path incl. source
79 * @return history log for file
80 * @throws HistoryException on error accessing the history
87 * Get the history after a specified revision.
91 * The default implementation first fetches the full history and then
98 * @param file the file to get the history fo
[all...]
H A DHistoryReader.java24 package org.opensolaris.opengrok.history;
33 * Class for reading history entries in a way suitable for indexing by Lucene.
40 HistoryReader(History history) { argument
41 entries = history.getHistoryEntries();
H A DHistoryException.java25 package org.opensolaris.opengrok.history;
28 * Exception thrown when retrieval or manipulation of history information
H A DAccuRevHistoryParser.java23 package org.opensolaris.opengrok.history;
41 * Parse source history for a AccuRev Repository
49 private History history; field in class:AccuRevHistoryParser
53 * Parse the history for the specified file.
55 * @param file the file to parse history for
57 * @return the file's history
61 history = null;
66 * no history is available, create fake. */
71 history = new History(entries);
75 /* Try again because there was no 'keep' history
[all...]
H A DClearCaseHistoryParser.java20 package org.opensolaris.opengrok.history;
42 private History history; field in class:ClearCaseHistoryParser
52 throw new HistoryException("Failed to get history for '" +
56 return history;
58 throw new HistoryException("Failed to get history for '" +
65 * into the history field.
80 // skip this history entry
121 history = new History();
122 history.setHistoryEntries(entries);
129 * @return The parsed history
[all...]
H A DHistoryCache.java23 package org.opensolaris.opengrok.history;
32 * Create and initialize an empty history cache if one doesn't exist
40 * Check whether this cache implementation can store history for the given
44 * @return {@code true} if this cache implementation can store history
50 * Retrieve the history for the given path, either from the cache or by
51 * parsing the history information in the repository.
53 * @param path The path to retrieve history for
55 * @param repository The external repository to read the history from
57 * @param withFiles If {@code true} the returned history will contain
60 * @param isDir If {@code null} the returned history typ
78 store(History history, Repository repository) argument
[all...]
H A DHistory.java25 package org.opensolaris.opengrok.history;
31 * Class representing the history of a file.
58 * @return The list of entries in this history
65 * Check if at least one history entry has a file list.
H A DPerforceHistoryParser.java24 package org.opensolaris.opengrok.history;
41 * Parse source history for a Perforce Repository
48 * Parse the history for the specified file.
50 * @param file the file to parse history for
52 * @return object representing the file's history
56 History history;
64 history = parseDirectory(file);
66 history = getRevisions(file, null);
71 return history;
107 * Parses the history i
[all...]
H A DCVSHistoryParser.java24 package org.opensolaris.opengrok.history;
49 private History history; field in class:CVSHistoryParser
54 * into the history field.
66 history = new History();
121 history.setHistoryEntries(entries);
125 * Parse the history for the specified file.
127 * @param file the file to parse history for
129 * @return object representing the file's history
138 throw new HistoryException("Failed to get history for '" +
142 throw new HistoryException("Failed to get history fo
[all...]
H A DRCSHistoryParser.java24 package org.opensolaris.opengrok.history;
96 History history = new History();
97 history.setHistoryEntries(entries);
98 return history;
105 private void traverse(Node n, List<HistoryEntry> history) { argument
109 traverse(n.getChild(), history);
114 traverse(b, history);
124 history.add(entry);
H A DFileHistoryCache.java24 package org.opensolaris.opengrok.history;
86 * @return file that might contain cached history for <code>file</code>
112 * Read history from a file.
131 private void storeFile(History history, File file) throws HistoryException { argument
158 e.writeObject(history);
167 throw new HistoryException("Failed to write history", ioe);
172 logger.warning("Failed to remove temporary history cache file");
179 logger.warning("Failed to remove temporary history cache file");
187 public void store(History history, Repository repository) argument
190 if (history
[all...]
H A DRepositoryInfo.java23 package org.opensolaris.opengrok.history;
48 /** indicate, whether history info for this repository is stored remotely */
110 * Is the history and version information for this repository stored on
113 * @return true if the history is stored on a remote server.
H A DSCCSHistoryParser.java23 package org.opensolaris.opengrok.history;
41 * Reads and filters out junk from a SCCS history file
44 * taking a lot of time. Time to index history has reduced 4 to 1!
96 History history = new History();
97 history.setHistoryEntries(entries);
98 return history;
H A DSCCSget.java24 package org.opensolaris.opengrok.history;
H A DGitHistoryParser.java23 package org.opensolaris.opengrok.history;
55 private History history; field in class:GitHistoryParser
61 * into the history field.
83 history = new History();
115 // TBD: Perhaps we should add this to the history entry as well
193 history.setHistoryEntries(entries);
197 * Parse the history for the specified file.
199 * @param file the file to parse history for
201 * @return object representing the file's history
214 throw new HistoryException("Failed to get history fo
[all...]
/opengrok-jel/test/org/opensolaris/opengrok/history/
H A DPerforceRepositoryTest.java24 package org.opensolaris.opengrok.history;
88 History history = instance.getHistory(f);
89 assertNotNull("Failed to get history for: " + f.getAbsolutePath(), history);
91 for (HistoryEntry entry : history.getHistoryEntries()) {
H A DSCCSRepositoryTest.java25 package org.opensolaris.opengrok.history;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/c/
H A DCAnalyzerFactory.java35 import org.opensolaris.opengrok.history.Annotation;
H A DCxxAnalyzerFactory.java34 import org.opensolaris.opengrok.history.Annotation;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/csharp/
H A DCSharpAnalyzerFactory.java36 import org.opensolaris.opengrok.history.Annotation;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzerFactory.java35 import org.opensolaris.opengrok.history.Annotation;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/fortran/
H A DFortranAnalyzerFactory.java34 import org.opensolaris.opengrok.history.Annotation;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/java/
H A DJavaAnalyzerFactory.java35 import org.opensolaris.opengrok.history.Annotation;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptAnalyzerFactory.java35 import org.opensolaris.opengrok.history.Annotation;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispAnalyzerFactory.java35 import org.opensolaris.opengrok.history.Annotation;

Completed in 35 milliseconds

12345