09f0bee0f3
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4602 542714f4-19e9-0310-aa3c-eee0fc999fb1
197 lines
5.7 KiB
ActionScript
197 lines
5.7 KiB
ActionScript
//
|
|
// $Id$
|
|
//
|
|
// Narya library - tools for developing networked games
|
|
// Copyright (C) 2002-2007 Three Rings Design, Inc., All Rights Reserved
|
|
// http://www.threerings.net/code/narya/
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it
|
|
// under the terms of the GNU Lesser General Public License as published
|
|
// by the Free Software Foundation; either version 2.1 of the License, or
|
|
// (at your option) any later version.
|
|
//
|
|
// This library 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
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
package com.threerings.io {
|
|
|
|
import flash.utils.ByteArray;
|
|
|
|
import com.threerings.util.ClassUtil;
|
|
|
|
import com.threerings.io.streamers.ArrayStreamer;
|
|
import com.threerings.io.streamers.ByteStreamer;
|
|
import com.threerings.io.streamers.ByteArrayStreamer;
|
|
import com.threerings.io.streamers.FloatStreamer;
|
|
import com.threerings.io.streamers.IntegerStreamer;
|
|
import com.threerings.io.streamers.LongStreamer;
|
|
import com.threerings.io.streamers.NumberStreamer;
|
|
import com.threerings.io.streamers.ShortStreamer;
|
|
import com.threerings.io.streamers.StringStreamer;
|
|
|
|
public class Streamer
|
|
{
|
|
public static const BAD_STREAMER :Streamer = new Streamer(null, null);
|
|
|
|
public static function getStreamer (obj :Object) :Streamer
|
|
{
|
|
if (obj is Streamable) {
|
|
return null;
|
|
}
|
|
|
|
initStreamers();
|
|
|
|
var streamer :Streamer;
|
|
for each (streamer in _streamers) {
|
|
if (streamer.isStreamerFor(obj)) {
|
|
return streamer;
|
|
}
|
|
}
|
|
|
|
if (obj is TypedArray) {
|
|
streamer = new ArrayStreamer((obj as TypedArray).getJavaType());
|
|
_streamers.push(streamer);
|
|
return streamer;
|
|
}
|
|
|
|
return BAD_STREAMER;
|
|
}
|
|
|
|
public static function getStreamerByClass (clazz :Class) :Streamer
|
|
{
|
|
initStreamers();
|
|
|
|
if (ClassUtil.isAssignableAs(Streamable, clazz)) {
|
|
return null; // Streamable
|
|
}
|
|
|
|
if (clazz === TypedArray) {
|
|
throw new Error("Broken, TODO");
|
|
}
|
|
|
|
for each (var streamer :Streamer in _streamers) {
|
|
if (streamer.isStreamerForClass(clazz)) {
|
|
return streamer;
|
|
}
|
|
}
|
|
|
|
return BAD_STREAMER;
|
|
}
|
|
|
|
public static function getStreamerByJavaName (jname :String) :Streamer
|
|
{
|
|
initStreamers();
|
|
// unstream lists as simple arrays
|
|
if (jname == "java.util.List" || jname == "java.util.ArrayList") {
|
|
jname = "[Ljava.lang.Object;";
|
|
}
|
|
|
|
// see if we have a streamer for it
|
|
var streamer :Streamer;
|
|
for each (streamer in _streamers) {
|
|
if (streamer.getJavaClassName() === jname) {
|
|
return streamer;
|
|
}
|
|
}
|
|
|
|
// see if it's an array that we unstream using an ArrayStreamer
|
|
if (jname.charAt(0) === "[") {
|
|
streamer = new ArrayStreamer(jname);
|
|
_streamers.push(streamer);
|
|
return streamer;
|
|
}
|
|
|
|
// otherwise see if it represents a Streamable
|
|
var clazz :Class = ClassUtil.getClassByName(
|
|
Translations.getFromServer(jname));
|
|
if (ClassUtil.isAssignableAs(Streamable, clazz)) {
|
|
return null; // it's streamable
|
|
}
|
|
|
|
return BAD_STREAMER;
|
|
}
|
|
|
|
/** This should be a protected constructor. */
|
|
public function Streamer (targ :Class, jname :String)
|
|
//throws IOError
|
|
{
|
|
_target = targ;
|
|
_jname = jname;
|
|
}
|
|
|
|
public function isStreamerFor (obj :Object) :Boolean
|
|
{
|
|
return (obj is _target); // scripting langs are weird
|
|
}
|
|
|
|
public function isStreamerForClass (clazz :Class) :Boolean
|
|
{
|
|
return (clazz == _target);
|
|
}
|
|
|
|
/**
|
|
* Return the String to use to identify the class that we're streaming.
|
|
*/
|
|
public function getJavaClassName () :String
|
|
{
|
|
return _jname;
|
|
}
|
|
|
|
public function writeObject (obj :Object, out :ObjectOutputStream) :void
|
|
//throws IOError
|
|
{
|
|
throw new Error("Abstract");
|
|
}
|
|
|
|
public function createObject (ins :ObjectInputStream) :Object
|
|
//throws IOError
|
|
{
|
|
// actionscript is so fucked up
|
|
return new _target();
|
|
}
|
|
|
|
public function readObject (obj :Object, ins :ObjectInputStream) :void
|
|
//throws IOError
|
|
{
|
|
throw new Error("Abstract");
|
|
}
|
|
|
|
/**
|
|
* Initialize our streamers. This cannot simply be done statically
|
|
* because we cannot instantiate a subclass when this class is still
|
|
* being created. Fucking actionscript.
|
|
*/
|
|
private static function initStreamers () :void
|
|
{
|
|
if (_streamers == null) {
|
|
// Init like this so that _streamers is not null asap.
|
|
_streamers = [];
|
|
// We could add each one by one, so that any later streamers
|
|
// can find and use the earlier ones as delegates.
|
|
_streamers.push(new StringStreamer(),
|
|
new NumberStreamer(),
|
|
new ByteStreamer(),
|
|
new ShortStreamer(),
|
|
new IntegerStreamer(),
|
|
new LongStreamer(),
|
|
new FloatStreamer(),
|
|
new ArrayStreamer(),
|
|
new ByteArrayStreamer());
|
|
}
|
|
}
|
|
|
|
protected var _target :Class;
|
|
|
|
protected var _jname :String;
|
|
|
|
/** Just a list of our standard streamers. */
|
|
protected static var _streamers :Array;
|
|
}
|
|
}
|