[ 
https://issues.apache.org/jira/browse/BROOKLYN-379?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15673276#comment-15673276
 ] 

ASF GitHub Bot commented on BROOKLYN-379:
-----------------------------------------

Github user aledsage commented on a diff in the pull request:

    https://github.com/apache/brooklyn-server/pull/442#discussion_r88418644
  
    --- Diff: 
core/src/main/java/org/apache/brooklyn/core/mgmt/persist/OsgiClassPrefixer.java 
---
    @@ -0,0 +1,59 @@
    +/*
    + * 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.brooklyn.core.mgmt.persist;
    +
    +import org.apache.brooklyn.core.mgmt.rebind.dto.MementosGenerators;
    +import org.apache.brooklyn.util.core.ClassLoaderUtils;
    +import org.apache.brooklyn.util.core.osgi.Osgis;
    +import org.osgi.framework.Bundle;
    +
    +import com.google.common.base.Optional;
    +
    +/**
    + * For serialize/deserialize of persisted state, we need to prefix classes 
with their OSGi bundle 
    + * (so we know which classloader to use when deserializing). In most 
cases, this can be done when
    + * serializing the instances. However, in some cases the field of a 
memento is the String representation  
    + * of the type (e.g. see (@link {@link 
org.apache.brooklyn.core.mgmt.rebind.dto.AbstractMemento#getType()}).
    + * In that situation, the code writing the field must include the prefix 
(e.g. see
    + * {@link MementosGenerators}.
    + */
    +public class OsgiClassPrefixer {
    +
    +    private final ClassLoaderUtils whiteListRetriever;
    +    
    +    public OsgiClassPrefixer() {
    +        whiteListRetriever = new ClassLoaderUtils(getClass());
    +    }
    +    
    +    public Optional<String> getPrefix(Class<?> type) {
    +        Optional<Bundle> bundle  = Osgis.getBundleOf(type);
    +        if (bundle.isPresent() && 
!whiteListRetriever.isBundleWhiteListed(bundle.get())) {
    --- End diff --
    
    On the plus side, this is just moving the white list code (rather than 
proliferating). It is deleted from `XmlMementoSerializer.OsgiClassnameMapper`, 
which now delegates to this code. It does mean the white-list code is called 
slightly more often, but thus in a more consistent manner for handling prefixes.
    
    Let's revisit the white list in a separate PR (potentially on the 
dev@brooklyn mailing list first).


> Rebind error when entity type references pre-installed OSGi bundle
> ------------------------------------------------------------------
>
>                 Key: BROOKLYN-379
>                 URL: https://issues.apache.org/jira/browse/BROOKLYN-379
>             Project: Brooklyn
>          Issue Type: Bug
>            Reporter: Aled Sage
>
> When persisting an entity whose type is in an OSGi bundle (pre-installed in 
> Karaf), using the OSGi symbolic name prefix in the {{type: ...}} declaration, 
> it fails to deserialize.
> For example, if you deploy the blueprint below and then try to restart 
> Brooklyn, it fails because it can't load the class 
> {{com.example.MyEntityImpl}} (note the absence of the OSGi bundle prefix).
> {noformat}
> services:
> - type: com.example.my_osgi_bundle_name:com.example.MyEntity
> {noformat}
> See [~svet]'s example test in 
> https://github.com/apache/brooklyn-server/pull/396.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to