Examples of PersistentService


Examples of org.apache.derby.iapi.services.monitor.PersistentService

  */
  private boolean findProviderAndStartService(String name,
              Properties properties, boolean bootTime)
    throws StandardException {

    PersistentService actualProvider = null;

    Properties serviceProperties = null;
    String serviceName = null;

    // see if the name already includes a service type
    int colon = name.indexOf(':');
    if (colon != -1) {
      actualProvider = findProviderFromName(name, colon);

      // if null is returned here then its a sub-sub protocol/provider
      // that we don't understand. Attempt to load it as an untyped name.
      // If we have a protool
      // that we do understand and we can't open the service we will
      // throw an exception
      if (actualProvider != null) {

        serviceName = actualProvider.getCanonicalServiceName(name);
        if (serviceName == null)
          return true// we understand the type, but the service does not exist

        serviceProperties =
          actualProvider.getServiceProperties(serviceName, properties);

        if (serviceProperties == null)
          return true; // we understand the type, but the service does not exist

        // see if this service does not want to be auto-booted.
        if (bootTime && Boolean.valueOf(serviceProperties.getProperty(Property.NO_AUTO_BOOT)).booleanValue())
          return true;

        startProviderService(actualProvider, serviceName, serviceProperties);
        return true; // we understand the type
      }
    }

    StandardException savedMse = null;

    for (Enumeration e = new ProviderEnumeration( properties); e.hasMoreElements(); ) {

      PersistentService provider = (PersistentService) e.nextElement();

      String sn = provider.getCanonicalServiceName(name);
      if (sn == null)
        continue;

      Properties p = null;
      try {
        p = provider.getServiceProperties(sn, properties);
        // service does not exist.
        if (p == null)
          continue;

      } catch (StandardException mse) {
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

    {
        if( subSubProtocol == null)
            return null;
        if( serviceProviders != null)
        {
            PersistentService ps = (PersistentService) serviceProviders.get( subSubProtocol);
            if( ps != null)
                return ps;
        }
        return getPersistentService(subSubProtocol);
    } // end of getServiceProvider
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

        }
        else
        {
            try
            {
                PersistentService ps = Monitor.getMonitor().getServiceType(this);
                logStorageFactory = (WritableStorageFactory) ps.getStorageFactoryInstance( false, logDevice, null, null);
            }
            catch( IOException ioe)
            {
                if( SanityManager.DEBUG)
                    SanityManager.NOTREACHED();
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

    TopService ts = findTopService(serviceModule);

    if (ts == null)
      return null;

    PersistentService provider = ts.getServiceType();
    if (provider == null)
      return null;

    String serviceName = ts.getKey().getIdentifier();

    Properties properties = provider.getServiceProperties(serviceName, (Properties) null);

    properties = new UpdateServiceProperties(provider, serviceName, properties, true);

    return setLocale(properties, userDefinedLocale);
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

  public Object createPersistentService(String factoryInterface, String name, Properties properties)
    throws StandardException {


    PersistentService provider = findProviderForCreate(name);
    if (provider == null) {
      throw StandardException.newException(SQLState.PROTOCOL_UNKNOWN, name);
    }

    return bootService(provider, factoryInterface, name, properties, true);
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

      
    */
    public void removePersistentService(String name)
         throws StandardException
    {
        PersistentService provider=null;
    provider = findProviderForCreate(name);
        String serviceName = provider.getCanonicalServiceName(name);
        boolean removed = provider.removeServiceRoot(serviceName);
        if (removed == false)
      throw StandardException.newException(SQLState.SERVICE_DIRECTORY_REMOVE_ERROR,serviceName);
    }
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

    private boolean getPersistentServiceImplementation( Class possibleModule)
    {
        if( ! PersistentService.class.isAssignableFrom(possibleModule))
            return false;

        PersistentService ps = (PersistentService) newInstance(possibleModule);
        if (ps == null) {
            report("Class " + possibleModule.getName() + " cannot create instance, module ignored.");
        } else {
            serviceProviders.put(ps.getType(), ps);
        }
        return true;
    } // end of getPersistentServiceImplementation
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

    to boot all the services that that provider knows about.
  */
  private void bootPersistentServices() {
    Enumeration e = new ProviderEnumeration( applicationProperties);
    while (e.hasMoreElements()) {
      PersistentService provider = (PersistentService) e.nextElement();
      bootProviderServices(provider);
    }

  }
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

  */
  private boolean findProviderAndStartService(String name,
              Properties properties, boolean bootTime)
    throws StandardException {

    PersistentService actualProvider = null;

    Properties serviceProperties = null;
    String serviceName = null;

    // see if the name already includes a service type
    int colon = name.indexOf(':');
    if (colon != -1) {
      actualProvider = findProviderFromName(name, colon);

      // if null is returned here then its a sub-sub protocol/provider
      // that we don't understand. Attempt to load it as an untyped name.
      // If we have a protool
      // that we do understand and we can't open the service we will
      // throw an exception
      if (actualProvider != null) {

        serviceName = actualProvider.getCanonicalServiceName(name);
        if (serviceName == null)
          return true// we understand the type, but the service does not exist

        serviceProperties =
          actualProvider.getServiceProperties(serviceName, properties);

        if (serviceProperties == null)
          return true; // we understand the type, but the service does not exist

        // see if this service does not want to be auto-booted.
        if (bootTime && Boolean.valueOf(serviceProperties.getProperty(Property.NO_AUTO_BOOT)).booleanValue())
          return true;

        startProviderService(actualProvider, serviceName, serviceProperties);
        return true; // we understand the type
      }
    }

    StandardException savedMse = null;

    for (Enumeration e = new ProviderEnumeration( properties); e.hasMoreElements(); ) {

      PersistentService provider = (PersistentService) e.nextElement();

      String sn = provider.getCanonicalServiceName(name);
      if (sn == null)
        continue;

      Properties p = null;
      try {
        p = provider.getServiceProperties(sn, properties);
        // service does not exist.
        if (p == null)
          continue;

      } catch (StandardException mse) {
View Full Code Here

Examples of org.apache.derby.iapi.services.monitor.PersistentService

    {
        if( subSubProtocol == null)
            return null;
        if( serviceProviders != null)
        {
            PersistentService ps = (PersistentService) serviceProviders.get( subSubProtocol);
            if( ps != null)
                return ps;
        }
        return getPersistentService(subSubProtocol);
    } // end of getServiceProvider
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.