Search in sources :

Example 1 with FileSendUtil

use of com.generallycloud.baseio.container.FileSendUtil in project baseio by generallycloud.

the class TestDownloadServlet method doAccept.

@Override
protected void doAccept(SocketSession session, ParamedProtobaseFuture future) throws Exception {
    FileSendUtil fileSendUtil = new FileSendUtil();
    File file = new File(future.getParameters().getParameter(FileReceiveUtil.FILE_NAME));
    if (!file.exists()) {
        fileNotFound(session, future, "file not found");
        return;
    }
    fileSendUtil.sendFile(session, future.getFutureName(), file, 1024 * 800);
}
Also used : FileSendUtil(com.generallycloud.baseio.container.FileSendUtil) File(java.io.File)

Example 2 with FileSendUtil

use of com.generallycloud.baseio.container.FileSendUtil in project baseio by generallycloud.

the class TestUpload method main.

public static void main(String[] args) throws Exception {
    String serviceName = "/test-upload";
    IoEventHandleAdaptor eventHandle = new IoEventHandleAdaptor() {

        @Override
        public void accept(SocketSession session, Future future) throws Exception {
            ProtobaseFuture f = (ProtobaseFuture) future;
            System.out.println();
            System.out.println(f.getReadText());
            System.out.println();
            CloseUtil.close(connector);
        }
    };
    LoggerFactory.configure();
    ServerConfiguration configuration = new ServerConfiguration(8300);
    SocketChannelContext context = new NioSocketChannelContext(configuration);
    connector = new SocketChannelConnector(context);
    context.setIoEventHandleAdaptor(eventHandle);
    context.setProtocolFactory(new ProtobaseProtocolFactory());
    context.addSessionEventListener(new LoggerSocketSEListener());
    SocketSession session = connector.connect();
    String fileName = "lantern-installer-beta.exe";
    fileName = "content.rar";
    // fileName = "jdk-8u102-windows-x64.exe";
    File file = new File("c:/ryms/" + fileName);
    FileSendUtil fileSendUtil = new FileSendUtil();
    fileSendUtil.sendFile(session, serviceName, file, 1024 * 800);
    ThreadUtil.sleep(10000000);
}
Also used : SocketChannelConnector(com.generallycloud.baseio.connector.SocketChannelConnector) LoggerSocketSEListener(com.generallycloud.baseio.component.LoggerSocketSEListener) ServerConfiguration(com.generallycloud.baseio.configuration.ServerConfiguration) NioSocketChannelContext(com.generallycloud.baseio.component.NioSocketChannelContext) SocketChannelContext(com.generallycloud.baseio.component.SocketChannelContext) NioSocketChannelContext(com.generallycloud.baseio.component.NioSocketChannelContext) ProtobaseProtocolFactory(com.generallycloud.baseio.codec.protobase.ProtobaseProtocolFactory) ProtobaseFuture(com.generallycloud.baseio.codec.protobase.future.ProtobaseFuture) SocketSession(com.generallycloud.baseio.component.SocketSession) FileSendUtil(com.generallycloud.baseio.container.FileSendUtil) IoEventHandleAdaptor(com.generallycloud.baseio.component.IoEventHandleAdaptor) ProtobaseFuture(com.generallycloud.baseio.codec.protobase.future.ProtobaseFuture) Future(com.generallycloud.baseio.protocol.Future) File(java.io.File)

Aggregations

FileSendUtil (com.generallycloud.baseio.container.FileSendUtil)2 File (java.io.File)2 ProtobaseProtocolFactory (com.generallycloud.baseio.codec.protobase.ProtobaseProtocolFactory)1 ProtobaseFuture (com.generallycloud.baseio.codec.protobase.future.ProtobaseFuture)1 IoEventHandleAdaptor (com.generallycloud.baseio.component.IoEventHandleAdaptor)1 LoggerSocketSEListener (com.generallycloud.baseio.component.LoggerSocketSEListener)1 NioSocketChannelContext (com.generallycloud.baseio.component.NioSocketChannelContext)1 SocketChannelContext (com.generallycloud.baseio.component.SocketChannelContext)1 SocketSession (com.generallycloud.baseio.component.SocketSession)1 ServerConfiguration (com.generallycloud.baseio.configuration.ServerConfiguration)1 SocketChannelConnector (com.generallycloud.baseio.connector.SocketChannelConnector)1 Future (com.generallycloud.baseio.protocol.Future)1