mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
Move ModalityStateEx to core-impl
This commit is contained in:
+102
-102
@@ -1,102 +1,102 @@
|
||||
/*
|
||||
* Copyright 2000-2009 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.intellij.openapi.application.impl;
|
||||
|
||||
import com.intellij.openapi.application.ModalityState;
|
||||
import com.intellij.openapi.progress.ProgressIndicator;
|
||||
import org.jetbrains.annotations.NonNls;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.lang.ref.WeakReference;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class ModalityStateEx extends ModalityState {
|
||||
private static final WeakReference[] EMPTY_REFS_ARRAY = new WeakReference[0];
|
||||
|
||||
private final WeakReference[] myModalEntities;
|
||||
|
||||
public ModalityStateEx() {
|
||||
this(EMPTY_REFS_ARRAY);
|
||||
}
|
||||
|
||||
public ModalityStateEx(@NotNull Object[] modalEntities) {
|
||||
if (modalEntities.length > 0) {
|
||||
myModalEntities = new WeakReference[modalEntities.length];
|
||||
for (int i = 0; i < modalEntities.length; i++) {
|
||||
Object entity = modalEntities[i];
|
||||
myModalEntities[i] = new WeakReference<Object>(entity);
|
||||
}
|
||||
}
|
||||
else{
|
||||
myModalEntities = EMPTY_REFS_ARRAY;
|
||||
}
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public ModalityState appendProgress(@NotNull ProgressIndicator progress){
|
||||
return appendEntity(progress);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
ModalityStateEx appendEntity(@NotNull Object anEntity){
|
||||
ArrayList<Object> list = new ArrayList<Object>();
|
||||
for (WeakReference modalEntity : myModalEntities) {
|
||||
Object entity = modalEntity.get();
|
||||
if (entity == null) continue;
|
||||
list.add(entity);
|
||||
}
|
||||
list.add(anEntity);
|
||||
return new ModalityStateEx(list.toArray());
|
||||
}
|
||||
|
||||
private static boolean contains(WeakReference[] array, Object o){
|
||||
for (WeakReference reference : array) {
|
||||
Object o1 = reference.get();
|
||||
if (o1 == null) continue;
|
||||
if (o1.equals(o)) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean dominates(@NotNull ModalityState anotherState){
|
||||
if (anotherState == ModalityState.any()) return false;
|
||||
|
||||
for (WeakReference modalEntity : myModalEntities) {
|
||||
Object entity = modalEntity.get();
|
||||
if (entity == null) continue;
|
||||
if (!contains(((ModalityStateEx)anotherState).myModalEntities, entity)) return true; // I have entity which is absent in anotherState
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
boolean contains(Object modalEntity) {
|
||||
return contains(myModalEntities, modalEntity);
|
||||
}
|
||||
|
||||
@NonNls
|
||||
public String toString() {
|
||||
if (myModalEntities.length == 0) return "ModalityState.NON_MODAL";
|
||||
@NonNls StringBuilder buffer = new StringBuilder();
|
||||
buffer.append("ModalityState:");
|
||||
for (int i = 0; i < myModalEntities.length; i++) {
|
||||
Object entity = myModalEntities[i].get();
|
||||
if (i > 0) buffer.append(", ");
|
||||
buffer.append(entity);
|
||||
}
|
||||
return buffer.toString();
|
||||
}
|
||||
}
|
||||
/*
|
||||
* Copyright 2000-2009 JetBrains s.r.o.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package com.intellij.openapi.application.impl;
|
||||
|
||||
import com.intellij.openapi.application.ModalityState;
|
||||
import com.intellij.openapi.progress.ProgressIndicator;
|
||||
import org.jetbrains.annotations.NonNls;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
import java.lang.ref.WeakReference;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class ModalityStateEx extends ModalityState {
|
||||
private static final WeakReference[] EMPTY_REFS_ARRAY = new WeakReference[0];
|
||||
|
||||
private final WeakReference[] myModalEntities;
|
||||
|
||||
public ModalityStateEx() {
|
||||
this(EMPTY_REFS_ARRAY);
|
||||
}
|
||||
|
||||
public ModalityStateEx(@NotNull Object[] modalEntities) {
|
||||
if (modalEntities.length > 0) {
|
||||
myModalEntities = new WeakReference[modalEntities.length];
|
||||
for (int i = 0; i < modalEntities.length; i++) {
|
||||
Object entity = modalEntities[i];
|
||||
myModalEntities[i] = new WeakReference<Object>(entity);
|
||||
}
|
||||
}
|
||||
else{
|
||||
myModalEntities = EMPTY_REFS_ARRAY;
|
||||
}
|
||||
}
|
||||
|
||||
@NotNull
|
||||
public ModalityState appendProgress(@NotNull ProgressIndicator progress){
|
||||
return appendEntity(progress);
|
||||
}
|
||||
|
||||
@NotNull
|
||||
ModalityStateEx appendEntity(@NotNull Object anEntity){
|
||||
ArrayList<Object> list = new ArrayList<Object>();
|
||||
for (WeakReference modalEntity : myModalEntities) {
|
||||
Object entity = modalEntity.get();
|
||||
if (entity == null) continue;
|
||||
list.add(entity);
|
||||
}
|
||||
list.add(anEntity);
|
||||
return new ModalityStateEx(list.toArray());
|
||||
}
|
||||
|
||||
private static boolean contains(WeakReference[] array, Object o){
|
||||
for (WeakReference reference : array) {
|
||||
Object o1 = reference.get();
|
||||
if (o1 == null) continue;
|
||||
if (o1.equals(o)) return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean dominates(@NotNull ModalityState anotherState){
|
||||
if (anotherState == ModalityState.any()) return false;
|
||||
|
||||
for (WeakReference modalEntity : myModalEntities) {
|
||||
Object entity = modalEntity.get();
|
||||
if (entity == null) continue;
|
||||
if (!contains(((ModalityStateEx)anotherState).myModalEntities, entity)) return true; // I have entity which is absent in anotherState
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
boolean contains(Object modalEntity) {
|
||||
return contains(myModalEntities, modalEntity);
|
||||
}
|
||||
|
||||
@NonNls
|
||||
public String toString() {
|
||||
if (myModalEntities.length == 0) return "ModalityState.NON_MODAL";
|
||||
@NonNls StringBuilder buffer = new StringBuilder();
|
||||
buffer.append("ModalityState:");
|
||||
for (int i = 0; i < myModalEntities.length; i++) {
|
||||
Object entity = myModalEntities[i].get();
|
||||
if (i > 0) buffer.append(", ");
|
||||
buffer.append(entity);
|
||||
}
|
||||
return buffer.toString();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user