Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/LoadLibrariesRequest.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/LoadLibrariesRequest.java97
1 files changed, 0 insertions, 97 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/LoadLibrariesRequest.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/LoadLibrariesRequest.java
deleted file mode 100644
index 4db958e6d9..0000000000
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/net4j/protocol/LoadLibrariesRequest.java
+++ /dev/null
@@ -1,97 +0,0 @@
-/***************************************************************************
- * Copyright (c) 2004 - 2009 Eike Stepper (Berlin, Germany) and others.
- * All rights reserved. This program and the accompanying materials
- * are made available under the terms of the Eclipse Public License v1.0
- * which accompanies this distribution, and is available at
- * http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Eike Stepper - initial API and implementation
- **************************************************************************/
-package org.eclipse.emf.internal.cdo.net4j.protocol;
-
-import org.eclipse.emf.cdo.common.protocol.CDOProtocolConstants;
-
-import org.eclipse.emf.internal.cdo.bundle.OM;
-
-import org.eclipse.net4j.signal.RequestWithConfirmation;
-import org.eclipse.net4j.util.io.ExtendedDataInputStream;
-import org.eclipse.net4j.util.io.ExtendedDataOutputStream;
-import org.eclipse.net4j.util.io.IOUtil;
-import org.eclipse.net4j.util.om.trace.ContextTracer;
-
-import java.io.File;
-import java.io.FileOutputStream;
-import java.util.Collection;
-
-/**
- * @author Eike Stepper
- */
-public class LoadLibrariesRequest extends RequestWithConfirmation<Integer>
-{
- private static final ContextTracer TRACER = new ContextTracer(OM.DEBUG_PROTOCOL, LoadLibrariesRequest.class);
-
- private Collection<String> libraryNames;
-
- private File cacheFolder;
-
- public LoadLibrariesRequest(CDOClientProtocol protocol, Collection<String> libraryNames, File cacheFolder)
- {
- super(protocol, CDOProtocolConstants.SIGNAL_LOAD_LIBRARIES);
- this.libraryNames = libraryNames;
- this.cacheFolder = cacheFolder;
- }
-
- @Override
- protected void requesting(ExtendedDataOutputStream out) throws Exception
- {
- int size = libraryNames.size();
- if (TRACER.isEnabled())
- {
- TRACER.format("Writing {0} library names", size); //$NON-NLS-1$
- }
-
- out.writeInt(size);
- for (String libraryName : libraryNames)
- {
- if (TRACER.isEnabled())
- {
- TRACER.format("Writing library name: {0}", libraryName); //$NON-NLS-1$
- }
-
- out.writeString(libraryName);
- }
- }
-
- @Override
- protected Integer confirming(ExtendedDataInputStream in) throws Exception
- {
- byte[] buffer = new byte[IOUtil.DEFAULT_BUFFER_SIZE];
- int count = 0;
- for (String libraryName : libraryNames)
- {
- int size = in.readInt();
- if (TRACER.isEnabled())
- {
- TRACER.format("Reading library {0}: {1} bytes", libraryName, size); //$NON-NLS-1$
- }
-
- File file = new File(cacheFolder, libraryName);
- FileOutputStream out = null;
-
- try
- {
- out = new FileOutputStream(file);
- IOUtil.copy(in, out, size, buffer);
- }
- finally
- {
- IOUtil.close(out);
- }
-
- ++count;
- }
-
- return count;
- }
-}

Back to the top