src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/mimepull/WeakDataFile.java

Tue, 09 Apr 2013 14:51:13 +0100

author
alanb
date
Tue, 09 Apr 2013 14:51:13 +0100
changeset 368
0989ad8c0860
parent 286
f50545b5e2f1
child 637
9c07ef4934dd
permissions
-rw-r--r--

8010393: Update JAX-WS RI to 2.2.9-b12941
Reviewed-by: alanb, erikj
Contributed-by: miroslav.kos@oracle.com, martin.grebac@oracle.com

ohair@286 1 /*
alanb@368 2 * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
ohair@286 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
ohair@286 4 *
ohair@286 5 * This code is free software; you can redistribute it and/or modify it
ohair@286 6 * under the terms of the GNU General Public License version 2 only, as
ohair@286 7 * published by the Free Software Foundation. Oracle designates this
ohair@286 8 * particular file as subject to the "Classpath" exception as provided
ohair@286 9 * by Oracle in the LICENSE file that accompanied this code.
ohair@286 10 *
ohair@286 11 * This code is distributed in the hope that it will be useful, but WITHOUT
ohair@286 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
ohair@286 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
ohair@286 14 * version 2 for more details (a copy is included in the LICENSE file that
ohair@286 15 * accompanied this code).
ohair@286 16 *
ohair@286 17 * You should have received a copy of the GNU General Public License version
ohair@286 18 * 2 along with this work; if not, write to the Free Software Foundation,
ohair@286 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
ohair@286 20 *
ohair@286 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
ohair@286 22 * or visit www.oracle.com if you need additional information or have any
ohair@286 23 * questions.
ohair@286 24 */
ohair@286 25
ohair@286 26 package com.sun.xml.internal.org.jvnet.mimepull;
ohair@286 27
ohair@286 28 import java.io.File;
ohair@286 29 import java.io.IOException;
ohair@286 30 import java.io.RandomAccessFile;
ohair@286 31 import java.lang.ref.ReferenceQueue;
ohair@286 32 import java.lang.ref.WeakReference;
ohair@286 33 import java.util.ArrayList;
ohair@286 34 import java.util.List;
ohair@286 35 import java.util.concurrent.Executor;
alanb@368 36 import java.util.logging.Level;
ohair@286 37 import java.util.logging.Logger;
ohair@286 38
ohair@286 39 /**
ohair@286 40 * Removing files based on this
ohair@286 41 * <a href="http://java.sun.com/developer/technicalArticles/javase/finalization/">article</a>
ohair@286 42 *
ohair@286 43 * @author Jitendra Kotamraju
ohair@286 44 */
ohair@286 45 final class WeakDataFile extends WeakReference<DataFile> {
ohair@286 46
ohair@286 47 private static final Logger LOGGER = Logger.getLogger(WeakDataFile.class.getName());
ohair@286 48 //private static final int MAX_ITERATIONS = 2;
ohair@286 49 private static ReferenceQueue<DataFile> refQueue = new ReferenceQueue<DataFile>();
ohair@286 50 private static List<WeakDataFile> refList = new ArrayList<WeakDataFile>();
ohair@286 51 private final File file;
ohair@286 52 private final RandomAccessFile raf;
ohair@286 53 private static boolean hasCleanUpExecutor = false;
ohair@286 54 static {
ohair@286 55 CleanUpExecutorFactory executorFactory = CleanUpExecutorFactory.newInstance();
ohair@286 56 if (executorFactory!=null) {
alanb@368 57 if (LOGGER.isLoggable(Level.FINE)) {
alanb@368 58 LOGGER.log(Level.FINE, "Initializing clean up executor for MIMEPULL: {0}", executorFactory.getClass().getName());
alanb@368 59 }
ohair@286 60 Executor executor = executorFactory.getExecutor();
ohair@286 61 executor.execute(new Runnable() {
alanb@368 62 @Override
ohair@286 63 public void run() {
alanb@368 64 WeakDataFile weak;
ohair@286 65 while (true) {
ohair@286 66 try {
ohair@286 67 weak = (WeakDataFile) refQueue.remove();
alanb@368 68 if (LOGGER.isLoggable(Level.FINE)) {
alanb@368 69 LOGGER.log(Level.FINE, "Cleaning file = {0} from reference queue.", weak.file);
alanb@368 70 }
ohair@286 71 weak.close();
ohair@286 72 } catch (InterruptedException e) {
ohair@286 73 }
ohair@286 74 }
ohair@286 75 }
ohair@286 76 });
ohair@286 77 hasCleanUpExecutor = true;
ohair@286 78 }
ohair@286 79 }
ohair@286 80
ohair@286 81 WeakDataFile(DataFile df, File file) {
ohair@286 82 super(df, refQueue);
ohair@286 83 refList.add(this);
ohair@286 84 this.file = file;
ohair@286 85 try {
ohair@286 86 raf = new RandomAccessFile(file, "rw");
ohair@286 87 } catch(IOException ioe) {
ohair@286 88 throw new MIMEParsingException(ioe);
ohair@286 89 }
ohair@286 90 if (!hasCleanUpExecutor) {
ohair@286 91 drainRefQueueBounded();
ohair@286 92 }
ohair@286 93 }
ohair@286 94
ohair@286 95 synchronized void read(long pointer, byte[] buf, int offset, int length ) {
ohair@286 96 try {
ohair@286 97 raf.seek(pointer);
ohair@286 98 raf.readFully(buf, offset, length);
ohair@286 99 } catch(IOException ioe) {
ohair@286 100 throw new MIMEParsingException(ioe);
ohair@286 101 }
ohair@286 102 }
ohair@286 103
ohair@286 104 synchronized long writeTo(long pointer, byte[] data, int offset, int length) {
ohair@286 105 try {
ohair@286 106 raf.seek(pointer);
ohair@286 107 raf.write(data, offset, length);
ohair@286 108 return raf.getFilePointer(); // Update pointer for next write
ohair@286 109 } catch(IOException ioe) {
ohair@286 110 throw new MIMEParsingException(ioe);
ohair@286 111 }
ohair@286 112 }
ohair@286 113
ohair@286 114 void close() {
alanb@368 115 if (LOGGER.isLoggable(Level.FINE)) {
alanb@368 116 LOGGER.log(Level.FINE, "Deleting file = {0}", file.getName());
alanb@368 117 }
ohair@286 118 refList.remove(this);
ohair@286 119 try {
ohair@286 120 raf.close();
alanb@368 121 boolean deleted = file.delete();
alanb@368 122 if (!deleted) {
alanb@368 123 if (LOGGER.isLoggable(Level.INFO)) {
alanb@368 124 LOGGER.log(Level.INFO, "File {0} was not deleted", file.getAbsolutePath());
alanb@368 125 }
alanb@368 126 }
ohair@286 127 } catch(IOException ioe) {
ohair@286 128 throw new MIMEParsingException(ioe);
ohair@286 129 }
ohair@286 130 }
ohair@286 131
ohair@286 132 void renameTo(File f) {
alanb@368 133 if (LOGGER.isLoggable(Level.FINE)) {
alanb@368 134 LOGGER.log(Level.FINE, "Moving file={0} to={1}", new Object[]{file, f});
alanb@368 135 }
ohair@286 136 refList.remove(this);
ohair@286 137 try {
ohair@286 138 raf.close();
alanb@368 139 boolean renamed = file.renameTo(f);
alanb@368 140 if (!renamed) {
alanb@368 141 if (LOGGER.isLoggable(Level.INFO)) {
alanb@368 142 LOGGER.log(Level.INFO, "File {0} was not moved to {1}", new Object[] {file.getAbsolutePath(), f.getAbsolutePath()});
alanb@368 143 }
alanb@368 144 }
ohair@286 145 } catch(IOException ioe) {
ohair@286 146 throw new MIMEParsingException(ioe);
ohair@286 147 }
ohair@286 148
ohair@286 149 }
ohair@286 150
ohair@286 151 static void drainRefQueueBounded() {
alanb@368 152 WeakDataFile weak;
ohair@286 153 while (( weak = (WeakDataFile) refQueue.poll()) != null ) {
alanb@368 154 if (LOGGER.isLoggable(Level.FINE)) {
alanb@368 155 LOGGER.log(Level.FINE, "Cleaning file = {0} from reference queue.", weak.file);
alanb@368 156 }
ohair@286 157 weak.close();
ohair@286 158 }
ohair@286 159 }
ohair@286 160 }

mercurial