/* * Copyright 2000-2012 JetBrains s.r.o. * * Licensed 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 com.intellij.execution.testframework.sm.runner.events; import jetbrains.buildServer.messages.serviceMessages.ServiceMessage; import org.jetbrains.annotations.NonNls; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; public abstract class TreeNodeEvent { @NonNls public static final String ROOT_NODE_ID = "0"; private final String myName; private final String myId; public TreeNodeEvent(@Nullable String name, @Nullable String id) { myName = name; myId = id; } protected void fail(@NotNull String message) { throw new IllegalStateException(message + ", " + toString()); } @Nullable public String getName() { return myName; } /** * @return tree node id, or null if undefined */ @Nullable public String getId() { return myId; } @Override public final String toString() { StringBuilder buf = new StringBuilder(getClass().getSimpleName() + "{"); append(buf, "name", myName); append(buf, "id", myId); appendToStringInfo(buf); // drop last 2 chars: ', ' buf.setLength(buf.length() - 2); buf.append("}"); return buf.toString(); } protected abstract void appendToStringInfo(@NotNull StringBuilder buf); protected static void append(@NotNull StringBuilder buffer, @NotNull String key, @Nullable Object value) { if (value != null) { buffer.append(key).append("="); if (value instanceof String) { buffer.append("'").append(value).append("'"); } else { buffer.append(String.valueOf(value)); } buffer.append(", "); } } @Nullable public static String getNodeId(@NotNull ServiceMessage message) { return getNodeId(message, "nodeId"); } @Nullable public static String getNodeId(@NotNull ServiceMessage message, String key) { return message.getAttributes().get(key); } }