-
Notifications
You must be signed in to change notification settings - Fork 26.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
184 additions
and
31 deletions.
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
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
36 changes: 36 additions & 0 deletions
36
...com/alibaba/dubbo/common/serialize/hessian2/dubbo/AbstractHessian2FactoryInitializer.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,36 @@ | ||
/* | ||
* 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 | ||
* | ||
* https://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.alibaba.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
|
||
public abstract class AbstractHessian2FactoryInitializer implements Hessian2FactoryInitializer { | ||
private static SerializerFactory SERIALIZER_FACTORY; | ||
|
||
@Override | ||
public SerializerFactory getSerializerFactory() { | ||
if (SERIALIZER_FACTORY != null) { | ||
return SERIALIZER_FACTORY; | ||
} | ||
synchronized (this) { | ||
SERIALIZER_FACTORY = createSerializerFactory(); | ||
} | ||
return SERIALIZER_FACTORY; | ||
} | ||
|
||
protected abstract SerializerFactory createSerializerFactory(); | ||
} |
27 changes: 27 additions & 0 deletions
27
.../com/alibaba/dubbo/common/serialize/hessian2/dubbo/DefaultHessian2FactoryInitializer.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,27 @@ | ||
/* | ||
* 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 | ||
* | ||
* https://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.alibaba.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
import com.alibaba.dubbo.common.serialize.hessian2.Hessian2SerializerFactory; | ||
|
||
public class DefaultHessian2FactoryInitializer extends AbstractHessian2FactoryInitializer { | ||
@Override | ||
protected SerializerFactory createSerializerFactory() { | ||
return new Hessian2SerializerFactory(); | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...in/java/com/alibaba/dubbo/common/serialize/hessian2/dubbo/Hessian2FactoryInitializer.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,25 @@ | ||
/* | ||
* 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 | ||
* | ||
* https://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.alibaba.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
import com.alibaba.dubbo.common.extension.SPI; | ||
|
||
@SPI("default") | ||
public interface Hessian2FactoryInitializer { | ||
SerializerFactory getSerializerFactory(); | ||
} |
36 changes: 36 additions & 0 deletions
36
.../src/main/java/com/alibaba/dubbo/common/serialize/hessian2/dubbo/Hessian2FactoryUtil.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,36 @@ | ||
/* | ||
* 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 | ||
* | ||
* https://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.alibaba.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import com.alibaba.dubbo.common.extension.ExtensionLoader; | ||
import com.alibaba.dubbo.common.utils.ConfigUtils; | ||
import com.alibaba.dubbo.common.utils.StringUtils; | ||
|
||
public class Hessian2FactoryUtil { | ||
static String WHITELIST = "dubbo.application.hessian2.whitelist"; | ||
static String ALLOW = "dubbo.application.hessian2.allow"; | ||
static String DENY = "dubbo.application.hessian2.deny"; | ||
static ExtensionLoader<Hessian2FactoryInitializer> loader = ExtensionLoader.getExtensionLoader(Hessian2FactoryInitializer.class); | ||
|
||
public static Hessian2FactoryInitializer getInstance() { | ||
String whitelist = ConfigUtils.getProperty(WHITELIST); | ||
if (StringUtils.isNotEmpty(whitelist)) { | ||
return loader.getExtension("whitelist"); | ||
} | ||
return loader.getDefaultExtension(); | ||
} | ||
} |
53 changes: 53 additions & 0 deletions
53
...om/alibaba/dubbo/common/serialize/hessian2/dubbo/WhitelistHessian2FactoryInitializer.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,53 @@ | ||
/* | ||
* 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 | ||
* | ||
* https://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.alibaba.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
import com.alibaba.dubbo.common.serialize.hessian2.Hessian2SerializerFactory; | ||
import com.alibaba.dubbo.common.utils.ConfigUtils; | ||
import com.alibaba.dubbo.common.utils.StringUtils; | ||
|
||
import static com.alibaba.dubbo.common.serialize.hessian2.dubbo.Hessian2FactoryUtil.ALLOW; | ||
import static com.alibaba.dubbo.common.serialize.hessian2.dubbo.Hessian2FactoryUtil.DENY; | ||
import static com.alibaba.dubbo.common.serialize.hessian2.dubbo.Hessian2FactoryUtil.WHITELIST; | ||
|
||
/** | ||
* see https://github.com/ebourg/hessian/commit/cf851f5131707891e723f7f6a9718c2461aed826 | ||
*/ | ||
public class WhitelistHessian2FactoryInitializer extends AbstractHessian2FactoryInitializer { | ||
|
||
@Override | ||
public SerializerFactory createSerializerFactory() { | ||
SerializerFactory serializerFactory = new Hessian2SerializerFactory(); | ||
String whiteList = ConfigUtils.getProperty(WHITELIST); | ||
if ("true".equals(whiteList)) { | ||
serializerFactory.getClassFactory().setWhitelist(true); | ||
String allowPattern = ConfigUtils.getProperty(ALLOW); | ||
if (StringUtils.isNotEmpty(allowPattern)) { | ||
serializerFactory.getClassFactory().allow(allowPattern); | ||
} | ||
} else { | ||
serializerFactory.getClassFactory().setWhitelist(false); | ||
String denyPattern = ConfigUtils.getProperty(DENY); | ||
if (StringUtils.isNotEmpty(denyPattern)) { | ||
serializerFactory.getClassFactory().deny(denyPattern); | ||
} | ||
} | ||
return serializerFactory; | ||
} | ||
|
||
} |
2 changes: 2 additions & 0 deletions
2
...bbo/internal/com.alibaba.dubbo.common.serialize.hessian2.dubbo.Hessian2FactoryInitializer
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,2 @@ | ||
default=com.alibaba.dubbo.common.serialize.hessian2.dubbo.DefaultHessian2FactoryInitializer | ||
whitelist=com.alibaba.dubbo.common.serialize.hessian2.dubbo.WhitelistHessian2FactoryInitializer |