alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

/*
 * BufferIORequest.java - I/O request
 * :tabSize=8:indentSize=8:noTabs=false:
 * :folding=explicit:collapseFolds=1:
 *
 * Copyright (C) 2000, 2003 Slava Pestov
 *
 * 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; either version 2
 * of the License, or any later version.
 *
 * 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

package org.gjt.sp.jedit.buffer;

//{{{ Imports
import javax.swing.text.Segment;
import java.io.*;
import java.util.zip.*;
import java.util.Vector;
import org.gjt.sp.jedit.io.*;
import org.gjt.sp.jedit.*;
import org.gjt.sp.util.*;
//}}}

/**
 * A buffer I/O request.
 * @author Slava Pestov
 * @version $Id: BufferIORequest.java,v 1.28 2004/08/29 02:58:43 spestov Exp $
 */
public class BufferIORequest extends WorkRequest
{
	//{{{ Constants
	/**
	 * Size of I/O buffers.
	 */
	public static final int IOBUFSIZE = 32768;

	/**
	 * Number of lines per progress increment.
	 */
	public static final int PROGRESS_INTERVAL = 300;

	public static final String LOAD_DATA = "BufferIORequest__loadData";
	public static final String END_OFFSETS = "BufferIORequest__endOffsets";
	public static final String NEW_PATH = "BufferIORequest__newPath";

	/**
	 * Buffer boolean property set when an error occurs.
	 */
	public static final String ERROR_OCCURRED = "BufferIORequest__error";

	/**
	 * A file load request.
	 */
	public static final int LOAD = 0;

	/**
	 * A file save request.
	 */
	public static final int SAVE = 1;

	/**
	 * An autosave request. Only supported for local files.
	 */
	public static final int AUTOSAVE = 2;

	/**
	 * An insert file request.
	 */
	public static final int INSERT = 3;

	/**
	 * Magic numbers used for auto-detecting Unicode and GZIP files.
	 */
	public static final int GZIP_MAGIC_1 = 0x1f;
	public static final int GZIP_MAGIC_2 = 0x8b;
	public static final int UNICODE_MAGIC_1 = 0xfe;
	public static final int UNICODE_MAGIC_2 = 0xff;
	public static final int UTF8_MAGIC_1 = 0xef;
	public static final int UTF8_MAGIC_2 = 0xbb;
	public static final int UTF8_MAGIC_3 = 0xbf;

	/**
	 * Length of longest XML PI used for encoding detection.

* <?xml version="1.0" encoding="................"?> */ public static final int XML_PI_LENGTH = 50; //}}} //{{{ BufferIORequest constructor /** * Creates a new buffer I/O request. * @param type The request type * @param view The view * @param buffer The buffer * @param session The VFS session * @param vfs The VFS * @param path The path */ public BufferIORequest(int type, View view, Buffer buffer, Object session, VFS vfs, String path) { this.type = type; this.view = view; this.buffer = buffer; this.session = session; this.vfs = vfs; this.path = path; markersPath = vfs.getParentOfPath(path) + '.' + vfs.getFileName(path) + ".marks"; } //}}} //{{{ run() method public void run() { switch(type) { case LOAD: load(); break; case SAVE: save(); break; case AUTOSAVE: autosave(); break; case INSERT: insert(); break; default: throw new InternalError(); } } //}}} //{{{ toString() method public String toString() { String typeString; switch(type) { case LOAD: typeString = "LOAD"; break; case SAVE: typeString = "SAVE"; break; case AUTOSAVE: typeString = "AUTOSAVE"; break; default: typeString = "UNKNOWN!!!"; } return getClass().getName() + "[type=" + typeString + ",buffer=" + buffer + "]"; } //}}} //{{{ Private members //{{{ Instance variables private int type; private View view; private Buffer buffer; private Object session; private VFS vfs; private String path; private String markersPath; //}}} //{{{ load() method private void load() { InputStream in = null; try { try { String[] args = { vfs.getFileName(path) }; setAbortable(true); if(!buffer.isTemporary()) { setStatus(jEdit.getProperty("vfs.status.load",args)); setProgressValue(0); } path = vfs._canonPath(session,path,view); VFS.DirectoryEntry entry = vfs._getDirectoryEntry( session,path,view); long length; if(entry != null) length = entry.length; else length = 0L; in = vfs._createInputStream(session,path, false,view); if(in == null) return; read(autodetect(in),length,false); buffer.setNewFile(false); } catch(CharConversionException ch) { Log.log(Log.ERROR,this,ch); Object[] pp = { buffer.getProperty(Buffer.ENCODING), ch.toString() }; VFSManager.error(view,path,"ioerror.encoding-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(UnsupportedEncodingException uu) { Log.log(Log.ERROR,this,uu); Object[] pp = { buffer.getProperty(Buffer.ENCODING), uu.toString() }; VFSManager.error(view,path,"ioerror.encoding-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(IOException io) { Log.log(Log.ERROR,this,io); Object[] pp = { io.toString() }; VFSManager.error(view,path,"ioerror.read-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(OutOfMemoryError oom) { Log.log(Log.ERROR,this,oom); VFSManager.error(view,path,"out-of-memory-error",null); buffer.setBooleanProperty(ERROR_OCCURRED,true); } if(jEdit.getBooleanProperty("persistentMarkers")) { try { String[] args = { vfs.getFileName(path) }; if(!buffer.isTemporary()) setStatus(jEdit.getProperty("vfs.status.load-markers",args)); setAbortable(true); in = vfs._createInputStream(session,markersPath,true,view); if(in != null) readMarkers(buffer,in); } catch(IOException io) { // ignore } } } catch(WorkThread.Abort a) { if(in != null) { try { in.close(); } catch(IOException io) { } } buffer.setBooleanProperty(ERROR_OCCURRED,true); } finally { try { vfs._endVFSSession(session,view); } catch(IOException io) { Log.log(Log.ERROR,this,io); String[] pp = { io.toString() }; VFSManager.error(view,path,"ioerror.read-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(WorkThread.Abort a) { buffer.setBooleanProperty(ERROR_OCCURRED,true); } } } //}}} //{{{ autodetect() method /** * Tries to detect if the stream is gzipped, and if it has an encoding * specified with an XML PI. */ private Reader autodetect(InputStream in) throws IOException { in = new BufferedInputStream(in); String encoding = buffer.getStringProperty(Buffer.ENCODING); if(!in.markSupported()) Log.log(Log.WARNING,this,"Mark not supported: " + in); else if(buffer.getBooleanProperty(Buffer.ENCODING_AUTODETECT)) { in.mark(XML_PI_LENGTH); int b1 = in.read(); int b2 = in.read(); int b3 = in.read(); if(encoding.equals(MiscUtilities.UTF_8_Y)) { // Java does not support this encoding so // we have to handle it manually. if(b1 != UTF8_MAGIC_1 || b2 != UTF8_MAGIC_2 || b3 != UTF8_MAGIC_3) { // file does not begin with UTF-8-Y // signature. reset stream, read as // UTF-8. in.reset(); } else { // file begins with UTF-8-Y signature. // discard the signature, and read // the remainder as UTF-8. } encoding = "UTF-8"; } else if(b1 == GZIP_MAGIC_1 && b2 == GZIP_MAGIC_2) { in.reset(); in = new GZIPInputStream(in); buffer.setBooleanProperty(Buffer.GZIPPED,true); // auto-detect encoding within the gzip stream. return autodetect(in); } else if((b1 == UNICODE_MAGIC_1 && b2 == UNICODE_MAGIC_2) || (b1 == UNICODE_MAGIC_2 && b2 == UNICODE_MAGIC_1)) { in.reset(); encoding = "UTF-16"; buffer.setProperty(Buffer.ENCODING,encoding); } else if(b1 == UTF8_MAGIC_1 && b2 == UTF8_MAGIC_2 && b3 == UTF8_MAGIC_3) { // do not reset the stream and just treat it // like a normal UTF-8 file. buffer.setProperty(Buffer.ENCODING, MiscUtilities.UTF_8_Y); encoding = "UTF-8"; } else { in.reset(); byte[] _xmlPI = new byte[XML_PI_LENGTH]; int offset = 0; int count; while((count = in.read(_xmlPI,offset, XML_PI_LENGTH - offset)) != -1) { offset += count; if(offset == XML_PI_LENGTH) break; } String xmlPI = new String(_xmlPI,0,offset, "ASCII"); if(xmlPI.startsWith("#save#, then rename that * to , so that if the save fails, * data will not be lost. * * as of 4.1pre7 we now call vfs.getTwoStageSaveName() * instead of constructing the path directly * since some VFS's might not allow # in filenames. */ String savePath; boolean twoStageSave = (vfs.getCapabilities() & VFS.RENAME_CAP) != 0 && jEdit.getBooleanProperty("twoStageSave"); if(twoStageSave) savePath = vfs.getTwoStageSaveName(path); else savePath = path; out = vfs._createOutputStream(session,savePath,view); try { // this must be after the stream is created or // we deadlock with SSHTools. buffer.readLock(); if(out != null) { // Can't use buffer.getName() here because // it is not changed until the save is // complete if(savePath.endsWith(".gz")) buffer.setBooleanProperty(Buffer.GZIPPED,true); if(buffer.getBooleanProperty(Buffer.GZIPPED)) out = new GZIPOutputStream(out); write(buffer,out); if(twoStageSave) { if(!vfs._rename(session,savePath,path,view)) throw new IOException("Rename failed: " + savePath); } // We only save markers to VFS's that support deletion. // Otherwise, we will accumilate stale marks files. if((vfs.getCapabilities() & VFS.DELETE_CAP) != 0) { if(jEdit.getBooleanProperty("persistentMarkers") && buffer.getMarkers().size() != 0) { setStatus(jEdit.getProperty("vfs.status.save-markers",args)); setProgressValue(0); out = vfs._createOutputStream(session,markersPath,view); if(out != null) writeMarkers(buffer,out); } else vfs._delete(session,markersPath,view); } } else buffer.setBooleanProperty(ERROR_OCCURRED,true); if(!twoStageSave) VFSManager.sendVFSUpdate(vfs,path,true); } finally { buffer.readUnlock(); } } catch(IOException io) { Log.log(Log.ERROR,this,io); String[] pp = { io.toString() }; VFSManager.error(view,path,"ioerror.write-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(WorkThread.Abort a) { if(out != null) { try { out.close(); } catch(IOException io) { } } buffer.setBooleanProperty(ERROR_OCCURRED,true); } finally { try { vfs._saveComplete(session,buffer,path,view); vfs._endVFSSession(session,view); } catch(IOException io) { Log.log(Log.ERROR,this,io); String[] pp = { io.toString() }; VFSManager.error(view,path,"ioerror.write-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(WorkThread.Abort a) { buffer.setBooleanProperty(ERROR_OCCURRED,true); } } } //}}} //{{{ autosave() method private void autosave() { OutputStream out = null; try { String[] args = { vfs.getFileName(path) }; setStatus(jEdit.getProperty("vfs.status.autosave",args)); // the entire save operation can be aborted... setAbortable(true); try { //buffer.readLock(); if(!buffer.isDirty()) { // buffer has been saved while we // were waiting. return; } out = vfs._createOutputStream(session,path,view); if(out == null) return; write(buffer,out); } catch(Exception e) { } finally { //buffer.readUnlock(); } } catch(WorkThread.Abort a) { if(out != null) { try { out.close(); } catch(IOException io) { } } } } //}}} //{{{ write() method private void write(Buffer buffer, OutputStream _out) throws IOException { BufferedWriter out = null; try { String encoding = buffer.getStringProperty(Buffer.ENCODING); if(encoding.equals(MiscUtilities.UTF_8_Y)) { // not supported by Java... _out.write(UTF8_MAGIC_1); _out.write(UTF8_MAGIC_2); _out.write(UTF8_MAGIC_3); _out.flush(); encoding = "UTF-8"; } out = new BufferedWriter( new OutputStreamWriter(_out,encoding), IOBUFSIZE); Segment lineSegment = new Segment(); String newline = buffer.getStringProperty(Buffer.LINESEP); if(newline == null) newline = System.getProperty("line.separator"); setProgressMaximum(buffer.getLineCount() / PROGRESS_INTERVAL); setProgressValue(0); int i = 0; while(i < buffer.getLineCount()) { buffer.getLineText(i,lineSegment); out.write(lineSegment.array,lineSegment.offset, lineSegment.count); if(i != buffer.getLineCount() - 1) { out.write(newline); } if(++i % PROGRESS_INTERVAL == 0) setProgressValue(i / PROGRESS_INTERVAL); } if(jEdit.getBooleanProperty("stripTrailingEOL") && buffer.getBooleanProperty(Buffer.TRAILING_EOL)) { out.write(newline); } } finally { if(out != null) out.close(); else _out.close(); } } //}}} //{{{ writeMarkers() method private void writeMarkers(Buffer buffer, OutputStream out) throws IOException { Writer o = new BufferedWriter(new OutputStreamWriter(out)); try { Vector markers = buffer.getMarkers(); for(int i = 0; i < markers.size(); i++) { Marker marker = (Marker)markers.elementAt(i); o.write('!'); o.write(marker.getShortcut()); o.write(';'); String pos = String.valueOf(marker.getPosition()); o.write(pos); o.write(';'); o.write(pos); o.write('\n'); } } finally { o.close(); } } //}}} //{{{ insert() method private void insert() { InputStream in = null; try { try { String[] args = { vfs.getFileName(path) }; setStatus(jEdit.getProperty("vfs.status.load",args)); setAbortable(true); path = vfs._canonPath(session,path,view); VFS.DirectoryEntry entry = vfs._getDirectoryEntry( session,path,view); long length; if(entry != null) length = entry.length; else length = 0L; in = vfs._createInputStream(session,path,false,view); if(in == null) return; final SegmentBuffer seg = read( autodetect(in),length,true); /* we don't do this in Buffer.insert() so that we can insert multiple files at once */ VFSManager.runInAWTThread(new Runnable() { public void run() { view.getTextArea().setSelectedText( seg.toString()); } }); } catch(IOException io) { Log.log(Log.ERROR,this,io); String[] pp = { io.toString() }; VFSManager.error(view,path,"ioerror.read-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } } catch(WorkThread.Abort a) { if(in != null) { try { in.close(); } catch(IOException io) { } } buffer.setBooleanProperty(ERROR_OCCURRED,true); } finally { try { vfs._endVFSSession(session,view); } catch(IOException io) { Log.log(Log.ERROR,this,io); String[] pp = { io.toString() }; VFSManager.error(view,path,"ioerror.read-error",pp); buffer.setBooleanProperty(ERROR_OCCURRED,true); } catch(WorkThread.Abort a) { buffer.setBooleanProperty(ERROR_OCCURRED,true); } } } //}}} //}}} }

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.