Package org.codehaus.classworlds

Examples of org.codehaus.classworlds.ClassRealm


   *
   * @param classpathFile the classpath file name
   * @throws Exception the exception
   */
  public void loadDependencies(File classpathFile) throws Exception {
    ClassRealm classRealm = getMainRealm();

    BufferedReader reader = new BufferedReader(new FileReader(classpathFile));

    boolean done1 = false;

    while (!done1) {
      String line = reader.readLine();

      if (line == null) {
        done1 = true;
      } else {
        boolean done2 = false;

        while (!done2) {
          int index1 = line.indexOf("${");

          if (index1 == -1) {
            done2 = true;
          } else {
            int index2 = line.substring(index1 + 1).indexOf("}");

            if (index2 == -1) {
              done2 = true;
            } else {
              String propertyName = line.substring(index1 + 2, index2 + 1);
              String property = System.getProperty(propertyName);

              if (property == null) {
                line = line.substring(0, index1) + "?" + propertyName + "?" + line.substring(index2 + 2);

                System.out.println("This property is not specified: " + propertyName + ".");
              } else {
                line = line.substring(0, index1) + property + line.substring(index2 + 2);
              }
            }
          }
        }

        classRealm.addConstituent(new File(line).toURI().toURL());
      }
    }
  }
View Full Code Here


   * @param classifier the classifier
   * @throws Exception the exception
   */
  public void resolveDependencies(String groupId, String artifactId, String version, String classifier)
      throws Exception {
    ClassRealm classRealm = getMainRealm();

    List<URL> deps = pomReader.calculateDependencies(groupId, artifactId, version, classifier);

    for (URL dep : deps) {
      classRealm.addConstituent(dep);
    }
  }
View Full Code Here

    if (!depsFile.exists()) {
      System.out.println("File " + depsFile + " does not exist.");
    }
    else {
      ClassRealm classRealm = getMainRealm();

      List<URL> deps = pomReader.calculateDependencies(depsFile, ignore);

      for (URL dep : deps) {
        classRealm.addConstituent(dep);
      }
    }
  }
View Full Code Here

    File compilerJar = CommonUtil.getCompilerJar();

    if (compilerJar != null) {
      try {
        ClassRealm mainRealm = getMainRealm();
        mainRealm.addConstituent(compilerJar.toURI().toURL());
        //System.out.println("Using Java compiler: " + compilerJar);
      }
      catch (Exception e) {
        throw new LauncherException(e);
      }
View Full Code Here

        // * componentConfiguration 3rd param is org.codehaus.classworlds.ClassRealm
        // so use some reflection see MSITE-609
        try
        {
            Method methodContainerRealm = container.getClass().getMethod( "getContainerRealm" );
            ClassRealm realm = (ClassRealm) methodContainerRealm.invoke( container );

            Method methodConfigure = componentConfigurator.getClass().getMethod( "configureComponent",
                                                                                 new Class[]{ Object.class,
                                                                                     PlexusConfiguration.class,
                                                                                     ClassRealm.class } );
View Full Code Here

            PlexusContainer container = (PlexusContainer) container1;

            if (container != null) {
                container.dispose();

                ClassRealm realm = container.getContainerRealm();

                if (realm != null) {
                    realm.getWorld().disposeRealm(realm.getId());
                }
            }
        }
    }
View Full Code Here

        {
            try
            {
                Field f = sysClassLoader.getClass().getDeclaredField( "realm" );
                f.setAccessible( true );
                ClassRealm r = (ClassRealm) f.get( sysClassLoader );
                urls = r.getConstituents();
            }
            catch ( NoSuchFieldException e )
            {
                throw new MojoExecutionException( "mee ", e );
            }
View Full Code Here

        try
        {

            field = sysClassLoader.getClass().getDeclaredField( "realm" );
            field.setAccessible( true );
            ClassRealm realm = (ClassRealm) field.get( sysClassLoader );

            urls = realm.getConstituents();
        }
        catch ( SecurityException e )
        {
            // TODO Auto-generated catch block
            e.printStackTrace();
View Full Code Here

            this.launcher = new EmbeddedLauncher(logger, this);
        }
    }

  private static synchronized ClassRealm getOrCreateClassRealm(final ClassRealm classRealm, final File jrubyJar) throws MalformedURLException, ScriptException {
    ClassRealm jruby;
    try {
      jruby = classRealm.getWorld().getRealm("jruby");
    }
    catch (final NoSuchRealmException e) {
      try {
        jruby = classRealm.getWorld().newRealm("jruby");
        if(jrubyJar != null){
          jruby.addConstituent(jrubyJar.toURI().toURL());
        }
      }
      catch (final DuplicateRealmException ee) {
        throw new ScriptException("could not setup classrealm for jruby",
                      ee);
View Full Code Here

//        for (final String classpath : classpathElements) {
//            if (classpath.equals(jrubyJar.getAbsolutePath())) {
//                return null;
//            }
//        }
        ClassRealm newClassRealm;
        try {
            ClassRealm jruby;
            try {
                jruby = classRealm.getWorld().getRealm("jruby");
            }
            catch (final NoSuchRealmException e) {
                jruby = classRealm.getWorld().newRealm("jruby");
                if(jrubyJar != null){
                    jruby.addConstituent(jrubyJar.toURI().toURL());
                }
            }
            try {
                jruby.getWorld().disposeRealm("pom");
            }
            catch (final NoSuchRealmException e) {
                // ignored
            }
            newClassRealm = jruby.createChildRealm("pom");
            for (final String classpath : classpathElements) {
                if (!classpath.contains("jruby-complete") || factory.jrubyJar == null) {
                    newClassRealm.addConstituent(new File(classpath).toURI()
                            .toURL());
                }
View Full Code Here

TOP

Related Classes of org.codehaus.classworlds.ClassRealm

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.