Examples of traceDebugging()


Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

      exceptions = exceptions_;
    final ComponentIdentifier identifier;
    {
      final String identifierData = arguments.getIdentifier ();
      if (identifierData != null) {
        transcript.traceDebugging ("parsing identifier `%s`...", identifierData);
        identifier = ComponentIdentifier.resolve (identifierData);
      } else {
        transcript.traceWarning ("running a standalone component.");
        identifier = ComponentIdentifier.standalone;
      }
View Full Code Here

Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

    final Map<String, Object> options = new HashMap<String, Object> ();
    {
      final List<String> optionsDatas = arguments.getCallbacksOptions ();
      if (optionsDatas != null) {
        for (final String optionsData : optionsDatas) {
          transcript.traceDebugging ("parsing configuration `%s`...", optionsData);
          final Object optionsObject = DefaultJsonCoder.defaultInstance.decodeFromString (optionsData);
          if (optionsObject != null) {
            Preconditions.checkArgument (optionsObject instanceof Map, "invalid configuration `%s` (not a JSON map)", optionsObject);
            for (final Map.Entry<String, Object> option : ((Map<String, Object>) optionsObject).entrySet ()) {
              transcript.traceDebugging ("defining configuration `%s` = `%s`...", option.getKey (), option.getValue ());
View Full Code Here

Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

          transcript.traceDebugging ("parsing configuration `%s`...", optionsData);
          final Object optionsObject = DefaultJsonCoder.defaultInstance.decodeFromString (optionsData);
          if (optionsObject != null) {
            Preconditions.checkArgument (optionsObject instanceof Map, "invalid configuration `%s` (not a JSON map)", optionsObject);
            for (final Map.Entry<String, Object> option : ((Map<String, Object>) optionsObject).entrySet ()) {
              transcript.traceDebugging ("defining configuration `%s` = `%s`...", option.getKey (), option.getValue ());
              options.put (option.getKey (), option.getValue ());
            }
          }
        }
      }
View Full Code Here

Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

      classLoader = BasicComponentHarnessMain.prepareClassLoader (arguments, transcript, exceptions);
    else
      classLoader = classLoader_;
    final ThreadingContext threading;
    if (threading_ == null) {
      transcript.traceDebugging ("creating threading context...");
      final BasicThreadingContext threading1 = BasicThreadingContext.create (BasicComponentHarnessMain.class, exceptions, UncaughtExceptionHandler.create (exceptions), classLoader);
      transcript.traceDebugging ("initializing threading context...");
      threading1.initialize ();
      threading = threading1;
    } else
View Full Code Here

Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

      classLoader = classLoader_;
    final ThreadingContext threading;
    if (threading_ == null) {
      transcript.traceDebugging ("creating threading context...");
      final BasicThreadingContext threading1 = BasicThreadingContext.create (BasicComponentHarnessMain.class, exceptions, UncaughtExceptionHandler.create (exceptions), classLoader);
      transcript.traceDebugging ("initializing threading context...");
      threading1.initialize ();
      threading = threading1;
    } else
      threading = threading_;
    final BasicCallbackReactor reactor;
View Full Code Here

Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

      threading = threading1;
    } else
      threading = threading_;
    final BasicCallbackReactor reactor;
    {
      transcript.traceDebugging ("creating callbacks reactor...");
      reactor = BasicCallbackReactor.create (threading, exceptions);
      transcript.traceDebugging ("initializing callbacks reactor....");
      reactor.initialize ();
    }
    final Environment environment = new Environment (identifier, classLoader, reactor, threading, transcript, exceptions, options);
View Full Code Here

Examples of eu.mosaic_cloud.tools.transcript.core.Transcript.traceDebugging()

      threading = threading_;
    final BasicCallbackReactor reactor;
    {
      transcript.traceDebugging ("creating callbacks reactor...");
      reactor = BasicCallbackReactor.create (threading, exceptions);
      transcript.traceDebugging ("initializing callbacks reactor....");
      reactor.initialize ();
    }
    final Environment environment = new Environment (identifier, classLoader, reactor, threading, transcript, exceptions, options);
    return (environment);
  }
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.