org.armedbear.lisp.CaseFrobStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of abcl Show documentation
Show all versions of abcl Show documentation
Common Lisp implementation running on the JVM
/*
* CaseFrobStream.java
*
* Copyright (C) 2004 Peter Graves
* $Id$
*
* 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 (at your option) 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.
*
* As a special exception, the copyright holders of this library give you
* permission to link this library with independent modules to produce an
* executable, regardless of the license terms of these independent
* modules, and to copy and distribute the resulting executable under
* terms of your choice, provided that you also meet, for each linked
* independent module, the terms and conditions of the license of that
* module. An independent module is a module which is not derived from
* or based on this library. If you modify this library, you may extend
* this exception to your version of the library, but you are not
* obligated to do so. If you do not wish to do so, delete this
* exception statement from your version.
*/
package org.armedbear.lisp;
import static org.armedbear.lisp.Lisp.*;
public abstract class CaseFrobStream extends Stream
{
protected final Stream target;
protected CaseFrobStream(Stream target)
{
super(Symbol.CASE_FROB_STREAM);
Debug.assertTrue(target.isCharacterOutputStream());
this.target = target;
}
@Override
public LispObject getElementType()
{
return target.getElementType();
}
@Override
public LispObject typeOf()
{
return Symbol.CASE_FROB_STREAM;
}
@Override
public LispObject classOf()
{
return BuiltInClass.CASE_FROB_STREAM;
}
@Override
public LispObject typep(LispObject type)
{
if (type == Symbol.CASE_FROB_STREAM)
return T;
if (type == BuiltInClass.CASE_FROB_STREAM)
return T;
return super.typep(type);
}
@Override
public boolean isInputStream()
{
return false;
}
@Override
public boolean isOutputStream()
{
return true;
}
@Override
public boolean isCharacterInputStream()
{
return false;
}
@Override
public boolean isBinaryInputStream()
{
return false;
}
@Override
public boolean isCharacterOutputStream()
{
return true;
}
@Override
public boolean isBinaryOutputStream()
{
return false;
}
@Override
public int getCharPos()
{
return target.getCharPos();
}
@Override
public void setCharPos(int n)
{
target.setCharPos(n);
}
// Returns -1 at end of file.
@Override
protected int _readChar()
{
notSupported();
// Not reached.
return -1;
}
@Override
protected void _unreadChar(int n)
{
notSupported();
}
@Override
protected boolean _charReady()
{
notSupported();
// Not reached.
return false;
}
@Override
public void _writeChars(char[] chars, int start, int end)
{
_writeString(new String(chars, start, end));
}
// Reads an 8-bit byte.
@Override
public int _readByte()
{
notSupported();
// Not reached.
return -1;
}
// Writes an 8-bit byte.
@Override
public void _writeByte(int n)
{
notSupported();
}
@Override
public void _finishOutput()
{
target._finishOutput();
}
@Override
public void _clearInput()
{
notSupported();
}
@Override
public LispObject close(LispObject abort)
{
setOpen(false);
return T;
}
@Override
public LispObject listen()
{
notSupported();
// Not reached.
return NIL;
}
@Override
public LispObject terpri()
{
return target.terpri();
}
@Override
public LispObject freshLine()
{
return target.freshLine();
}
@Override
public String printObject()
{
return unreadableString("CASE-FROB-STREAM");
}
private void notSupported()
{
error(new TypeError("Operation is not supported for streams of type CASE-FROB-STREAM."));
}
// ### make-case-frob-stream target => case-frob-stream
private static final Primitive MAKE_CASE_FROB_STREAM =
new Primitive("make-case-frob-stream", PACKAGE_SYS, false, "target kind")
{
@Override
public LispObject execute(LispObject first, LispObject second)
{
Stream target = checkCharacterOutputStream(first);
if (second == Keyword.UPCASE)
return new UpcaseStream(target);
if (second == Keyword.DOWNCASE)
return new DowncaseStream(target);
if (second == Keyword.CAPITALIZE)
return new CapitalizeStream(target);
if (second == Keyword.CAPITALIZE_FIRST)
return new CapitalizeFirstStream(target);
return error(new TypeError(
"Kind must be :UPCASE, :DOWNCASE, :CAPITALIZE or :CAPITALIZE-FIRST."));
}
};
}