/jEdit/tags/jedit-4-2-pre4/org/gjt/sp/jedit/BufferHistory.java
Java | 440 lines | 308 code | 58 blank | 74 comment | 43 complexity | d6ddaa7392eaf7d68387d94e4b3c5bf3 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
- /*
- * BufferHistory.java - Remembers caret positions
- * :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;
- //{{{ Imports
- import com.microstar.xml.*;
- import java.io.*;
- import java.util.*;
- import org.gjt.sp.jedit.msg.DynamicMenuChanged;
- import org.gjt.sp.jedit.textarea.*;
- import org.gjt.sp.util.Log;
- //}}}
- /**
- * Recent file list.
- * @author Slava Pestov
- * @version $Id: BufferHistory.java 4835 2003-07-23 06:08:54Z spestov $
- */
- public class BufferHistory
- {
- //{{{ getEntry() method
- public static Entry getEntry(String path)
- {
- Iterator iter = history.iterator();
- while(iter.hasNext())
- {
- Entry entry = (Entry)iter.next();
- if(pathsCaseInsensitive)
- {
- if(entry.path.equalsIgnoreCase(path))
- return entry;
- }
- else
- {
- if(entry.path.equals(path))
- return entry;
- }
- }
- return null;
- } //}}}
- //{{{ setEntry() method
- public static void setEntry(String path, int caret, Selection[] selection,
- String encoding)
- {
- removeEntry(path);
- addEntry(new Entry(path,caret,selectionToString(selection),
- encoding));
- EditBus.send(new DynamicMenuChanged("recent-files"));
- } //}}}
- //{{{ getHistory() method
- /**
- * @since jEdit 4.2pre2
- */
- public static List getHistory()
- {
- return history;
- } //}}}
- //{{{ getBufferHistory() method
- /**
- * @deprecated Call {@link #getHistory()} instead.
- */
- public static Vector getBufferHistory()
- {
- Vector retVal = new Vector(history.size());
- Iterator iter = history.iterator();
- while(iter.hasNext())
- retVal.add(iter.next());
- return retVal;
- } //}}}
- //{{{ load() method
- public static void load()
- {
- String settingsDirectory = jEdit.getSettingsDirectory();
- if(settingsDirectory == null)
- return;
- File recent = new File(MiscUtilities.constructPath(
- settingsDirectory,"recent.xml"));
- if(!recent.exists())
- return;
- recentModTime = recent.lastModified();
- Log.log(Log.MESSAGE,BufferHistory.class,"Loading recent.xml");
- RecentHandler handler = new RecentHandler();
- XmlParser parser = new XmlParser();
- Reader in = null;
- parser.setHandler(handler);
- try
- {
- in = new BufferedReader(new FileReader(recent));
- parser.parse(null, null, in);
- }
- catch(XmlException xe)
- {
- int line = xe.getLine();
- String message = xe.getMessage();
- Log.log(Log.ERROR,BufferHistory.class,recent + ":" + line
- + ": " + message);
- }
- catch(FileNotFoundException fnf)
- {
- //Log.log(Log.DEBUG,BufferHistory.class,fnf);
- }
- catch(Exception e)
- {
- Log.log(Log.ERROR,BufferHistory.class,e);
- }
- finally
- {
- try
- {
- if(in != null)
- in.close();
- }
- catch(IOException io)
- {
- Log.log(Log.ERROR,BufferHistory.class,io);
- }
- }
- } //}}}
- //{{{ save() method
- public static void save()
- {
- String settingsDirectory = jEdit.getSettingsDirectory();
- if(settingsDirectory == null)
- return;
- File file1 = new File(MiscUtilities.constructPath(
- settingsDirectory, "#recent.xml#save#"));
- File file2 = new File(MiscUtilities.constructPath(
- settingsDirectory, "recent.xml"));
- if(file2.exists() && file2.lastModified() != recentModTime)
- {
- Log.log(Log.WARNING,BufferHistory.class,file2
- + " changed on disk; will not save recent"
- + " files");
- return;
- }
- jEdit.backupSettingsFile(file2);
- Log.log(Log.MESSAGE,BufferHistory.class,"Saving " + file1);
- String lineSep = System.getProperty("line.separator");
- try
- {
- BufferedWriter out = new BufferedWriter(
- new FileWriter(file1));
- out.write("<?xml version=\"1.0\"?>");
- out.write(lineSep);
- out.write("<!DOCTYPE RECENT SYSTEM \"recent.dtd\">");
- out.write(lineSep);
- out.write("<RECENT>");
- out.write(lineSep);
- Iterator iter = history.iterator();
- while(iter.hasNext())
- {
- out.write("<ENTRY>");
- out.write(lineSep);
- Entry entry = (Entry)iter.next();
- out.write("<PATH>");
- out.write(MiscUtilities.charsToEntities(entry.path));
- out.write("</PATH>");
- out.write(lineSep);
- out.write("<CARET>");
- out.write(String.valueOf(entry.caret));
- out.write("</CARET>");
- out.write(lineSep);
- if(entry.selection != null
- && entry.selection.length() > 0)
- {
- out.write("<SELECTION>");
- out.write(entry.selection);
- out.write("</SELECTION>");
- out.write(lineSep);
- }
- if(entry.encoding != null)
- {
- out.write("<ENCODING>");
- out.write(entry.encoding);
- out.write("</ENCODING>");
- out.write(lineSep);
- }
- out.write("</ENTRY>");
- out.write(lineSep);
- }
- out.write("</RECENT>");
- out.write(lineSep);
- out.close();
- /* to avoid data loss, only do this if the above
- * completed successfully */
- file2.delete();
- file1.renameTo(file2);
- }
- catch(Exception e)
- {
- Log.log(Log.ERROR,BufferHistory.class,e);
- }
- recentModTime = file2.lastModified();
- } //}}}
- //{{{ Private members
- private static LinkedList history;
- private static boolean pathsCaseInsensitive;
- private static long recentModTime;
-