1 24 25 package utobcast; 26 27 import java.util.Map ; 28 29 import org.objectweb.dream.AbstractComponent; 30 import org.objectweb.dream.Push; 31 import org.objectweb.dream.PushException; 32 import org.objectweb.dream.channel.IPChannelDestinationChunk; 33 import org.objectweb.dream.message.MessageTypeImpl; 34 import org.objectweb.dream.message.ChunkAlreadyExistsException; 35 import org.objectweb.dream.message.ExtensibleMessage; 36 import org.objectweb.dream.message.Message; 37 import org.objectweb.dream.message.MessageType; 38 import org.objectweb.dream.message.manager.MessageManager; 39 import org.objectweb.dream.protocol.utobcast.message.UTOBcastChunk; 40 import org.objectweb.dream.util.Error; 41 import org.objectweb.fractal.api.NoSuchInterfaceException; 42 import org.objectweb.fractal.api.control.IllegalBindingException; 43 import org.objectweb.fractal.api.control.IllegalLifeCycleException; 44 45 import utobcast.basic.TestChunk; 46 47 56 public class IPDestinationChunkTransformerImpl extends AbstractComponent 57 implements 58 Push 59 { 60 61 Push outPushItf; 62 MessageManager messageManagerItf; 63 MessageType msgType = new MessageTypeImpl(TestChunk.DEFAULT_NAME, 64 TestChunk.TYPE); 65 final String chunkName = "destination"; 66 67 71 75 public void push(Message message, Map context) throws PushException 76 { 77 UTOBcastChunk utobcastChunk = (UTOBcastChunk) message 78 .getChunk(UTOBcastChunk.DEFAULT_NAME); 79 TCPProcess process = (TCPProcess) utobcastChunk.getProcessTo(); 80 IPChannelDestinationChunk chunk = (IPChannelDestinationChunk) message 81 .getChunk(chunkName); 82 if (chunk == null) 83 { 84 if (message instanceof ExtensibleMessage) 85 { 86 chunk = (IPChannelDestinationChunk) messageManagerItf 87 .createChunk(IPChannelDestinationChunk.TYPE); 88 try 89 { 90 ((ExtensibleMessage) message).addChunk(chunkName, 91 IPChannelDestinationChunk.TYPE, chunk); 92 } 93 catch (ChunkAlreadyExistsException e) 94 { 95 } 97 } 98 else 99 { 100 Error.error("Invalid message : not extensible", logger); 101 } 102 } 103 chunk.setChannelDestinationAddr(process.getInetAddress()); 104 chunk.setChannelDestinationPort(process.getPort()); 105 outPushItf.push(message, context); 106 } 107 108 112 116 public synchronized void bindFc(String clientItfName, Object serverItf) 117 throws NoSuchInterfaceException, IllegalBindingException, 118 IllegalLifeCycleException 119 { 120 super.bindFc(clientItfName, serverItf); 121 if (clientItfName.equals(Push.OUT_PUSH_ITF_NAME)) 122 { 123 outPushItf = (Push) serverItf; 124 } 125 else if (clientItfName.equals(MessageManager.ITF_NAME)) 126 { 127 messageManagerItf = (MessageManager) serverItf; 128 } 129 } 130 131 134 public String [] listFc() 135 { 136 return new String []{Push.OUT_PUSH_ITF_NAME, MessageManager.ITF_NAME}; 137 } 138 139 }
| Popular Tags
|