Mercurial > hg4j
view src/org/tmatesoft/hg/core/CatCommand.java @ 123:4f509f5bc8cb
reflect status change in the todo content
author | Artem Tikhomirov <tikhomirov.artem@gmail.com> |
---|---|
date | Fri, 04 Feb 2011 04:06:44 +0100 |
parents | b1d6208fb517 |
children | 7567f4a42fe5 |
line wrap: on
line source
/* * Copyright (c) 2011 TMate Software Ltd * * This program 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; version 2 of the License. * * This program 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. * * For information on how to redistribute this software under * the terms of a license other than GNU General Public License * contact TMate Software at support@svnkit.com */ package org.tmatesoft.hg.core; import static org.tmatesoft.hg.repo.HgRepository.BAD_REVISION; import static org.tmatesoft.hg.repo.HgRepository.TIP; import java.io.FileNotFoundException; import org.tmatesoft.hg.repo.HgDataFile; import org.tmatesoft.hg.repo.HgRepository; import org.tmatesoft.hg.util.ByteChannel; /** * Command to obtain content of a * * @author Artem Tikhomirov * @author TMate Software Ltd. */ public class CatCommand { private final HgRepository repo; private Path file; private int localRevision = TIP; private Nodeid revision; public CatCommand(HgRepository hgRepo) { repo = hgRepo; } public CatCommand file(Path fname) { file = fname; return this; } // rev can't be WORKING_COPY (if allowed, need to implement in #execute()) public CatCommand revision(int rev) { localRevision = rev; revision = null; return this; } public CatCommand revision(Nodeid nodeid) { revision = nodeid; localRevision = BAD_REVISION; return this; } public void execute(ByteChannel sink) throws Exception /*TODO own exception type*/ { if (localRevision == BAD_REVISION && revision == null) { throw new IllegalArgumentException("Either local file revision number or nodeid shall be specified"); } if (file == null) { throw new IllegalArgumentException("Name of the file is missing"); } if (sink == null) { throw new IllegalArgumentException(); } HgDataFile dataFile = repo.getFileNode(file); if (!dataFile.exists()) { throw new FileNotFoundException(); } int revToExtract; if (revision != null) { revToExtract = dataFile.getLocalRevision(revision); } else { revToExtract = localRevision; } dataFile.content(revToExtract, sink, true); } }