forked from apache/dubbo
-
Notifications
You must be signed in to change notification settings - Fork 1
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
8 changed files
with
164 additions
and
32 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
.../org/apache/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 | ||
* | ||
* 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.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(); | ||
} |
28 changes: 28 additions & 0 deletions
28
...a/org/apache/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,28 @@ | ||
/* | ||
* 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 org.apache.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import org.apache.dubbo.common.serialize.hessian2.Hessian2SerializerFactory; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
|
||
public class DefaultHessian2FactoryInitializer extends AbstractHessian2FactoryInitializer { | ||
@Override | ||
protected SerializerFactory createSerializerFactory() { | ||
return new Hessian2SerializerFactory(); | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
...ain/java/org/apache/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,43 @@ | ||
/* | ||
* 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 org.apache.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import org.apache.dubbo.common.config.ConfigurationUtils; | ||
import org.apache.dubbo.common.extension.ExtensionLoader; | ||
import org.apache.dubbo.common.extension.SPI; | ||
import org.apache.dubbo.common.utils.StringUtils; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
|
||
@SPI("default") | ||
public interface Hessian2FactoryInitializer { | ||
String WHITELIST = "dubbo.application.hessian2.whitelist"; | ||
String ALLOW = "dubbo.application.hessian2.allow"; | ||
String DENY = "dubbo.application.hessian2.deny"; | ||
ExtensionLoader<Hessian2FactoryInitializer> loader = ExtensionLoader.getExtensionLoader(Hessian2FactoryInitializer.class); | ||
|
||
SerializerFactory getSerializerFactory(); | ||
|
||
static Hessian2FactoryInitializer getInstance() { | ||
String whitelist = ConfigurationUtils.getProperty(WHITELIST); | ||
if (StringUtils.isNotEmpty(whitelist)) { | ||
return loader.getExtension("whitelist"); | ||
} | ||
return loader.getDefaultExtension(); | ||
} | ||
|
||
} |
50 changes: 50 additions & 0 deletions
50
...org/apache/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,50 @@ | ||
/* | ||
* 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 org.apache.dubbo.common.serialize.hessian2.dubbo; | ||
|
||
import org.apache.dubbo.common.config.ConfigurationUtils; | ||
import org.apache.dubbo.common.serialize.hessian2.Hessian2SerializerFactory; | ||
import org.apache.dubbo.common.utils.StringUtils; | ||
|
||
import com.alibaba.com.caucho.hessian.io.SerializerFactory; | ||
|
||
/** | ||
* see https://github.com/ebourg/hessian/commit/cf851f5131707891e723f7f6a9718c2461aed826 | ||
*/ | ||
public class WhitelistHessian2FactoryInitializer extends AbstractHessian2FactoryInitializer { | ||
|
||
@Override | ||
public SerializerFactory createSerializerFactory() { | ||
SerializerFactory serializerFactory = new Hessian2SerializerFactory(); | ||
String whiteList = ConfigurationUtils.getProperty(WHITELIST); | ||
if ("true".equals(whiteList)) { | ||
serializerFactory.getClassFactory().setWhitelist(true); | ||
String allowPattern = ConfigurationUtils.getProperty(ALLOW); | ||
if (StringUtils.isNotEmpty(allowPattern)) { | ||
serializerFactory.getClassFactory().allow(allowPattern); | ||
} | ||
} else { | ||
serializerFactory.getClassFactory().setWhitelist(false); | ||
String denyPattern = ConfigurationUtils.getProperty(DENY); | ||
if (StringUtils.isNotEmpty(denyPattern)) { | ||
serializerFactory.getClassFactory().deny(denyPattern); | ||
} | ||
} | ||
return serializerFactory; | ||
} | ||
|
||
} |
2 changes: 2 additions & 0 deletions
2
...ubbo/internal/org.apache.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=org.apache.dubbo.common.serialize.hessian2.dubbo.DefaultHessian2FactoryInitializer | ||
whitelist=org.apache.dubbo.common.serialize.hessian2.dubbo.WhitelistHessian2FactoryInitializer |