-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support FastjsonUtils #1403
Closed
wangchengming666
wants to merge
6
commits into
sofastack:master
from
wangchengming666:support_fastjsonutils
Closed
Support FastjsonUtils #1403
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
650570e
support FastjsonUtils
10be6f3
support FastjsonUtils
d93b218
Merge branch 'master' into support_fastjsonutils
wangchengming666 57af4d5
support FastjsonUtils
0669330
Merge branch 'master' into support_fastjsonutils
7ca05cc
Merge branch 'master' into support_fastjsonutils
wangchengming666 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
83 changes: 83 additions & 0 deletions
83
core/common/src/main/java/com/alipay/sofa/rpc/common/utils/FastjsonUtils.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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.alipay.sofa.rpc.common.utils; | ||
|
||
import com.alibaba.fastjson.JSON; | ||
import com.alibaba.fastjson.JSONException; | ||
import com.alibaba.fastjson.JSONObject; | ||
import com.alibaba.fastjson.JSONPath; | ||
import com.alibaba.fastjson.TypeReference; | ||
import com.alibaba.fastjson.parser.Feature; | ||
import com.alibaba.fastjson.parser.ParserConfig; | ||
import com.alibaba.fastjson.serializer.SerializerFeature; | ||
|
||
import java.lang.reflect.Type; | ||
|
||
/** | ||
* Fastjson 工具类 | ||
* | ||
* @author chengming | ||
* @version FastjsonUtils.java, v 0.1 2024年03月14日 1:36 PM chengming | ||
*/ | ||
public class FastjsonUtils { | ||
|
||
private static final ParserConfig safeParserConfig = new ParserConfig(); | ||
|
||
public FastjsonUtils() { | ||
} | ||
|
||
public static ParserConfig getSafeInstance() { | ||
return safeParserConfig; | ||
} | ||
|
||
public String toJSONString(Object obj) { | ||
return JSON.toJSONString(obj, SerializerFeature.DisableCircularReferenceDetect); | ||
} | ||
|
||
public <T> T toJavaObject(String json, Type type) { | ||
return JSON.parseObject(json, type); | ||
} | ||
|
||
public static JSONObject parseObject(String text) { | ||
Object obj = JSON.parse(text, safeParserConfig); | ||
if (obj instanceof JSONObject) { | ||
return (JSONObject) obj; | ||
} else { | ||
try { | ||
return (JSONObject) JSON.toJSON(obj); | ||
} catch (RuntimeException var3) { | ||
throw new JSONException("can not cast to JSONObject.", var3); | ||
} | ||
} | ||
} | ||
|
||
public static <T> T parseObject(String text, Class<T> clazz) { | ||
return JSON.parseObject(text, clazz, safeParserConfig, null, JSON.DEFAULT_PARSER_FEATURE, new Feature[0]); | ||
} | ||
|
||
public static <T> T parseObject(String text, TypeReference<T> type, Feature... features) { | ||
return JSON.parseObject(text, type.getType(), safeParserConfig, JSON.DEFAULT_PARSER_FEATURE, features); | ||
} | ||
|
||
public static Object read(String json, String path) { | ||
return JSONPath.compile(path).eval(JSON.parse(json, safeParserConfig)); | ||
} | ||
|
||
static { | ||
safeParserConfig.setSafeMode(true); | ||
} | ||
} |
109 changes: 109 additions & 0 deletions
109
core/common/src/test/java/com/alipay/sofa/rpc/common/utils/FastjsonUtilsTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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.alipay.sofa.rpc.common.utils; | ||
|
||
import com.alibaba.fastjson.JSONObject; | ||
import com.alibaba.fastjson.TypeReference; | ||
import org.junit.Before; | ||
import org.junit.Test; | ||
|
||
import java.util.Map; | ||
import java.util.Objects; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
public class FastjsonUtilsTest { | ||
|
||
private FastjsonUtils fastjsonUtils; | ||
|
||
@Before | ||
public void setUp() throws Exception { | ||
fastjsonUtils = new FastjsonUtils(); | ||
} | ||
|
||
@Test | ||
public void testToJSONString() { | ||
assertEquals("{\"age\":1,\"name\":\"name\"}", fastjsonUtils.toJSONString(new TestClass(1, "name"))); | ||
} | ||
|
||
@Test | ||
public void testParseObject() { | ||
JSONObject jsonObject = new JSONObject(); | ||
jsonObject.put("age", 1); | ||
jsonObject.put("name", "name"); | ||
assertEquals(jsonObject, FastjsonUtils.parseObject("{\"age\":1,\"name\":\"name\"}")); | ||
} | ||
|
||
@Test | ||
public void testParseObjectWithObject() { | ||
TestClass testClass = FastjsonUtils.parseObject("{\"age\":1,\"name\":\"name\"}", TestClass.class); | ||
assertEquals(1, testClass.age); | ||
assertEquals("name", testClass.name); | ||
} | ||
|
||
@Test | ||
public void testParseObjectWithMap() { | ||
Map<String, String> map = FastjsonUtils.parseObject("{\"age\":1,\"name\":\"name\"}", | ||
new TypeReference<Map<String, String>>() { | ||
}); | ||
assertEquals("1", map.get("age")); | ||
assertEquals("name", map.get("name")); | ||
} | ||
|
||
public static class TestClass { | ||
int age; | ||
|
||
String name; | ||
|
||
public TestClass(int age, String name) { | ||
this.age = age; | ||
this.name = name; | ||
} | ||
|
||
public int getAge() { | ||
return age; | ||
} | ||
|
||
public void setAge(int age) { | ||
this.age = age; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
@Override | ||
public boolean equals(Object o) { | ||
if (this == o) | ||
return true; | ||
if (o == null || getClass() != o.getClass()) | ||
return false; | ||
TestClass testClass = (TestClass) o; | ||
return age == testClass.age && | ||
Objects.equals(name, testClass.name); | ||
} | ||
|
||
@Override | ||
public int hashCode() { | ||
return Objects.hash(age, name); | ||
} | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The
toJavaObject
method is not used in the test class. Consider adding tests for this method to ensure its functionality.Would you like me to generate tests for the
toJavaObject
method?