Searched refs:sinceRevision (Results 1 - 12 of 12) sorted by relevance

/opengrok/src/org/opensolaris/opengrok/history/
H A DRepository.java96 * @param sinceRevision the revision right before the first one to return,
101 History getHistory(File file, String sinceRevision) argument
106 if (sinceRevision != null) {
116 if (sinceRevision == null) {
123 if (sinceRevision.equals(entry.getRevision())) {
129 removeAndVerifyOldestChangeset(partial, sinceRevision);
279 * @param sinceRevision if non-null, incrementally update the cache with all
285 final void createCache(HistoryCache cache, String sinceRevision) argument
306 history = getHistory(directory, sinceRevision);
308 if (sinceRevision
[all...]
H A DBazaarHistoryParser.java59 History parse(File file, String sinceRevision) throws HistoryException { argument
61 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
77 if (sinceRevision != null) {
78 repository.removeAndVerifyOldestChangeset(entries, sinceRevision);
H A DMonotoneRepository.java119 * @param sinceRevision the oldest changeset to return from the executor, or
123 Executor getHistoryLogExecutor(File file, String sinceRevision) argument
136 if (sinceRevision != null) {
138 cmd.add(sinceRevision);
146 return new Executor(cmd, new File(directoryName), sinceRevision != null);
261 History getHistory(File file, String sinceRevision) argument
263 return new MonotoneHistoryParser(this).parse(file, sinceRevision);
H A DBazaarRepository.java73 * @param sinceRevision the oldest changeset to return from the executor, or
77 Executor getHistoryLogExecutor(final File file, final String sinceRevision) argument
95 if (sinceRevision != null) {
97 cmd.add(sinceRevision + "..-1");
100 return new Executor(cmd, new File(getDirectoryName()), sinceRevision != null);
272 History getHistory(File file, String sinceRevision) throws HistoryException { argument
274 History result = new BazaarHistoryParser(this).parse(file, sinceRevision);
H A DSubversionHistoryParser.java147 * @param sinceRevision the revision number immediately preceding the first
151 History parse(File file, SubversionRepository repos, String sinceRevision) argument
158 Executor executor = repos.getHistoryLogExecutor(file, sinceRevision);
169 // sinceRevision. Remove it.
170 if (sinceRevision != null) {
171 repos.removeAndVerifyOldestChangeset(entries, sinceRevision);
H A DSSCMRepository.java123 * @param sinceRevision the oldest changeset to return from the executor, or
127 Executor getHistoryLogExecutor(final File file, String sinceRevision) throws IOException { argument
138 if (sinceRevision != null && new Scanner(sinceRevision).hasNextInt()) {
139 argv.add("-v" + (Integer.parseInt(sinceRevision) + 1) + ":" + Integer.MAX_VALUE);
153 return new Executor(argv, new File(getDirectoryName()), sinceRevision != null);
162 History getHistory(File file, String sinceRevision) argument
164 return new SSCMHistoryParser(this).parse(file, sinceRevision);
H A DSubversionRepository.java173 * @param sinceRevision the revision number immediately preceding the first
178 Executor getHistoryLogExecutor(final File file, String sinceRevision) { argument
200 if (sinceRevision != null) {
202 // We would like to use sinceRevision+1 here, but if no new
203 // revisions have been added after sinceRevision, it would fail
204 // because there is no such revision as sinceRevision+1. Instead,
206 cmd.add("BASE:" + sinceRevision);
212 return new Executor(cmd, new File(directoryName), sinceRevision != null);
297 History getHistory(File file, String sinceRevision) argument
299 return new SubversionHistoryParser().parse(file, this, sinceRevision);
[all...]
H A DSSCMHistoryParser.java147 History parse(File file, String sinceRevision) throws HistoryException { argument
149 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
H A DGitHistoryParser.java150 * @param sinceRevision the oldest changeset to return from the executor, or
154 History parse(File file, Repository repos, String sinceRevision) throws HistoryException { argument
158 Executor executor = repository.getHistoryLogExecutor(file, sinceRevision);
H A DMercurialRepository.java143 * @param sinceRevision the oldest changeset to return from the executor, or
147 Executor getHistoryLogExecutor(File file, String sinceRevision) argument
171 if (sinceRevision != null) {
173 String[] parts = sinceRevision.split(":");
179 + sinceRevision);
197 return new Executor(cmd, new File(directoryName), sinceRevision != null);
574 History getHistory(File file, String sinceRevision) argument
578 sinceRevision);
H A DHistoryGuru.java495 private void createCache(Repository repository, String sinceRevision) { argument
509 repository.createCache(historyCache, sinceRevision);
696 String sinceRevision = null;
699 sinceRevision = historyCache.getLatestCachedRevision(repository);
700 if (sinceRevision == null) {
709 createCache(getRepository(file), sinceRevision);
H A DGitRepository.java146 * @param sinceRevision the oldest changeset to return from the executor, or
150 Executor getHistoryLogExecutor(final File file, String sinceRevision) argument
169 if (sinceRevision != null) {
170 cmd.add(sinceRevision + "..");
177 return new Executor(cmd, new File(getDirectoryName()), sinceRevision != null);
479 History getHistory(File file, String sinceRevision) argument
482 History result = new GitHistoryParser().parse(file, this, sinceRevision);

Completed in 25 milliseconds