2016-11-02 3 views
1

OSGi 컨테이너를 프로그래밍 방식으로 시작하고 번들을로드 한 다음 시작하는 클래스가 있습니다. 내가 겪고있는 문제는 번들이 올바른 순서로 시작되지 않는다는 것입니다. 일부 번들은 시작하기에 의존하기 전에로드되고 시작됩니다.OSGi 번들을 올바른 순서로로드하는 방법

모든 번들이 의존성이있는 순서가 아니라 올바른 순서로 시작되도록하려면 어떻게해야합니까?

피씨 :나는 지금까지 무엇을했는지에 대해 제안 된 모든 코드 개선을 환영합니다.

미리 감사드립니다.

import java.io.File; 
import java.net.URISyntaxException; 
import java.net.URL; 
import java.util.HashMap; 
import java.util.Map; 
import java.util.ServiceLoader; 

import org.osgi.framework.Bundle; 
import org.osgi.framework.BundleException; 
import org.osgi.framework.Constants; 
import org.osgi.framework.ServiceReference; 
import org.osgi.framework.launch.Framework; 
import org.osgi.framework.launch.FrameworkFactory; 

public class App { 

    public static void main(String[] args) throws BundleException, URISyntaxException { 
     App app = new App(); 
     app.initialize(); 
    } 

    private void initialize() throws BundleException, URISyntaxException { 
     Map<String, String> map = new HashMap<String, String>(); 

     // make sure the cache is cleaned 
     map.put(Constants.FRAMEWORK_STORAGE_CLEAN, Constants.FRAMEWORK_STORAGE_CLEAN_ONFIRSTINIT); 

     map.put("ds.showtrace", "true"); 
     map.put("ds.showerrors", "true"); 

     FrameworkFactory frameworkFactory = ServiceLoader.load(FrameworkFactory.class).iterator().next(); 
     Framework framework = frameworkFactory.newFramework(map); 

     System.out.println("Starting OSGi Framework"); 
     framework.init(); 

     File baseDir = new File("target/dist-1.0-SNAPSHOT-bin/plugins/"); 

     loadScrBundle(framework); 

     // get all the Bundles from our plugins directory 
     File[] fList = baseDir.listFiles(); 

     for (File file : fList) { 
      if (file.isFile()) { 
       System.out.println(file.getAbsolutePath()); 

       if (file.getName().endsWith(".jar")) { 
        framework.getBundleContext().installBundle(file.toURI().toString()); 
       } 
      } else if (file.isDirectory()) { 
       // recurse 
      } 
     } 

     for (Bundle bundle : framework.getBundleContext().getBundles()) { 
      bundle.start(); 
      System.out.println("Bundle: " + bundle.getSymbolicName()); 
      if (bundle.getRegisteredServices() != null) { 
       for (ServiceReference<?> serviceReference : bundle.getRegisteredServices()) 
        System.out.println("\tRegistered service: " + serviceReference); 
      } 
     } 
    } 

    private void loadScrBundle(Framework framework) throws URISyntaxException, BundleException { 
     URL url = getClass().getClassLoader().getResource("org/apache/felix/scr/ScrService.class"); 
     if (url == null) 
      throw new RuntimeException("Could not find the class org.apache.felix.scr.ScrService"); 
     String jarPath = url.toURI().getSchemeSpecificPart().replaceAll("!.*", ""); 
     System.out.println("Found declarative services implementation: " + jarPath); 
     framework.getBundleContext().installBundle(jarPath).start(); 
    } 
} 

답변

7

당신은 그 때 당신은 내가은 OSGi와 예방 문제를 많이 가지고 시작 순서로 깨끗이하려고 지난 18 년 동안 알고 ... 누구은 OSGi 코드가없는 시작 순서에 따라 OSGi 프레임 코드를 작성하는 경우 . OSGi에서 번들은 언제든지 시작/중지 할 수 있기 때문에 시작시 한 번 작동하게 만들 수는 있지만 방해로 인해 코드가 중단 될 수 있습니다.

OSGi 선언적 서비스를 사용하면 이러한 문제점이 존재하지 않습니다. 모든 시간 종속성을 서비스로 변환하고 해당 서비스에 의존하십시오.

정말 이상하지, OSGi에는 주문이 없습니다 ...