Skip to content

Commit

Permalink
Avoid flipping accessible flag in OgnlMemberAccess
Browse files Browse the repository at this point in the history
Once a field is made accessible, we keep it accessible.
Flipping accessible flag causes a race condition.
Possibly related to mybatis#1648 .
  • Loading branch information
harawata committed Jan 12, 2020
1 parent 4d7c029 commit 3fbb901
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 4 deletions.
@@ -1,5 +1,5 @@
/**
* Copyright 2009-2019 the original author or authors.
* Copyright 2009-2020 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -58,9 +58,7 @@ public Object setup(Map context, Object target, Member member, String propertyNa
@Override
public void restore(Map context, Object target, Member member, String propertyName,
Object state) {
if (state != null) {
((AccessibleObject) member).setAccessible((Boolean) state);
}
// Flipping accessible flag is not thread safe. See #1648
}

@Override
Expand Down
@@ -0,0 +1,54 @@
/**
* Copyright 2009-2020 the original author or authors.
*
* 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 org.apache.ibatis.scripting.xmltags;

import static org.junit.jupiter.api.Assertions.*;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import java.util.stream.IntStream;

import org.junit.jupiter.api.Test;

public class OgnlCacheTest {
@Test
void concurrentAccess() throws Exception {
class DataClass {
@SuppressWarnings("unused")
private int id;
}
int run = 1000;
Map<String, Object> context = new HashMap<>();
List<Future<Object>> futures = new ArrayList<>();
context.put("data", new DataClass());
ExecutorService executor = Executors.newCachedThreadPool();
IntStream.range(0, run).forEach(i -> {
futures.add(executor.submit(() -> {
return OgnlCache.getValue("data.id", context);
}));
});
for (int i = 0; i < run; i++) {
assertNotNull(futures.get(i).get());
}
executor.shutdown();
}
}

0 comments on commit 3fbb901

Please sign in to comment.