-
Notifications
You must be signed in to change notification settings - Fork 668
/
PhantomCleanable.java
206 lines (187 loc) · 6.91 KB
/
PhantomCleanable.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
/*
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation. Oracle designates this
* particular file as subject to the "Classpath" exception as provided
* by Oracle in the LICENSE file that accompanied this code.
*
* This code 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 General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package jdk.internal.ref;
import java.lang.ref.Cleaner;
import java.lang.ref.PhantomReference;
import java.lang.ref.Reference;
import java.util.Objects;
/**
* PhantomCleanable subclasses efficiently encapsulate cleanup state and
* the cleaning action.
* Subclasses implement the abstract {@link #performCleanup()} method
* to provide the cleaning action.
* When constructed, the object reference and the {@link Cleaner.Cleanable Cleanable}
* are registered with the {@link Cleaner}.
* The Cleaner invokes {@link Cleaner.Cleanable#clean() clean} after the
* referent becomes phantom reachable.
*/
/*
* Reference
* │
* PhantomReference Cleanable
* └──────────┬────────────┘
* PhantomCleanable
*
* 抽象基类:可清理的虚引用,此类的属性既是虚引用,又是清理器。
*/
public abstract class PhantomCleanable<T> extends PhantomReference<T> implements Cleaner.Cleanable {
/**
* The list of PhantomCleanable; synchronizes insert and remove.
*/
// 指向CleanerImpl内部维护的PhantomCleanableList,在这里完成插入和删除操作
private final PhantomCleanable<?> list;
/**
* Links to previous and next in a doubly-linked list.
*/
// 前驱、后继
PhantomCleanable<?> prev = this, next = this;
/**
* Constructs new {@code PhantomCleanable} with
* {@code non-null referent} and {@code non-null cleaner}.
* The {@code cleaner} is not retained; it is only used to
* register the newly constructed {@link Cleaner.Cleanable Cleanable}.
*
* @param referent the referent to track
* @param cleaner the {@code Cleaner} to register with
*/
// 向cleaner注册跟踪的对象referent
public PhantomCleanable(T referent, Cleaner cleaner) {
// 将跟踪的对象交给虚引用管理
super(Objects.requireNonNull(referent), CleanerImpl.getCleanerImpl(cleaner).queue);
this.list = CleanerImpl.getCleanerImpl(cleaner).phantomCleanableList;
// 将该虚引用(清理器)插入到PhantomCleanableList中
insert();
// Ensure referent and cleaner remain accessible
// 确保被追踪对象referent和cleaner在此处是存活的,即还不能被GC回收
Reference.reachabilityFence(referent);
Reference.reachabilityFence(cleaner);
}
/**
* Construct a new root of the list; not inserted.
*/
PhantomCleanable() {
super(null, null);
this.list = this;
}
/**
* The {@code performCleanup} abstract method is overridden
* to implement the cleaning logic.
* The {@code performCleanup} method should not be called except
* by the {@link #clean} method which ensures at most once semantics.
*/
// 虚引用清理器的清理操作,被clean()方法调用,由子类完善
protected abstract void performCleanup();
/**
* Unregister this PhantomCleanable and invoke {@link #performCleanup()}, ensuring at-most-once semantics.
*/
/*
* CleanerImpl.run()==>清理器clean()-->清理器performCleanup()-->action.run()
* 可以等待清理清理服务自动调用,也可以手动执行清理操作
*/
@Override
public final void clean() {
if(remove()) {
super.clear();
performCleanup();
}
}
/**
* This method always throws {@link UnsupportedOperationException}.
* Enqueuing details of {@link Cleaner.Cleanable}
* are a private implementation detail.
*
* @throws UnsupportedOperationException always
*/
// 禁止在此处执行
@Override
public final boolean isEnqueued() {
throw new UnsupportedOperationException("isEnqueued");
}
/**
* This method always throws {@link UnsupportedOperationException}.
* Enqueuing details of {@link Cleaner.Cleanable}
* are a private implementation detail.
*
* @throws UnsupportedOperationException always
*/
// 禁止在此处执行
@Override
public final boolean enqueue() {
throw new UnsupportedOperationException("enqueue");
}
/**
* Unregister this PhantomCleanable and clear the reference.
* Due to inherent concurrency, {@link #performCleanup()} may still be invoked.
*/
// 清理虚引用追踪的对象的引用
@Override
public void clear() {
if(remove()) {
super.clear();
}
}
/**
* Returns true if the list's next reference refers to itself.
*
* @return true if the list is empty
*/
// 判断PhantomCleanableList是否为空
boolean isListEmpty() {
synchronized(list) {
return list == list.next;
}
}
/**
* Insert this PhantomCleanable after the list head.
*/
// 将该虚引用(清理器)插入到PhantomCleanableList中
private void insert() {
synchronized(list) {
prev = list;
next = list.next;
next.prev = this;
list.next = this;
}
}
/**
* Remove this PhantomCleanable from the list.
*
* @return true if Cleanable was removed or false if not because
* it had already been removed before
*/
// 将该虚引用(清理器)从PhantomCleanableList中移除。原因是ReferenceQueue中已记录到该引用属于"报废引用"了。
private boolean remove() {
synchronized(list) {
if(next != this) {
next.prev = prev;
prev.next = next;
prev = this;
next = this;
return true;
}
return false;
}
}
}