Package org.eclipse.egit.core.internal.storage

Source Code of org.eclipse.egit.core.internal.storage.WorkingTreeFileRevision

/*******************************************************************************
* Copyright (C) 2011, Jens Baumgart <jens.baumgart@sap.com>
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*******************************************************************************/
package org.eclipse.egit.core.internal.storage;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.InputStream;

import org.eclipse.core.resources.IStorage;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.egit.core.Activator;
import org.eclipse.team.core.history.IFileRevision;

/** An {@link IFileRevision} for the current version in the working tree */
public class WorkingTreeFileRevision extends GitFileRevision {

  private final File file;

  /**
   * @param file
   */
  public WorkingTreeFileRevision(final File file) {
    super(file.getPath());
    this.file = file;
  }

  public IStorage getStorage(IProgressMonitor monitor) throws CoreException {
    return new IStorage() {

      public Object getAdapter(Class adapter) {
        return null;
      }

      public boolean isReadOnly() {
        return true;
      }

      public String getName() {
        return file.getName();
      }

      public IPath getFullPath() {
        return new Path(file.getAbsolutePath());
      }

      public InputStream getContents() throws CoreException {
        try {
          return new FileInputStream(file);
        } catch (FileNotFoundException e) {
          throw new CoreException(Activator.error(e.getMessage(), e));
        }
      }
    };
  }

  public boolean isPropertyMissing() {
    return false;
  }

  public String getAuthor() {
    return ""//$NON-NLS-1$
  }

  public long getTimestamp() {
    return -1;
  }

  public String getComment() {
    return ""//$NON-NLS-1$
  }

  public String getContentIdentifier() {
    return WORKING_TREE;
  }

}
TOP

Related Classes of org.eclipse.egit.core.internal.storage.WorkingTreeFileRevision

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.