tracesrv/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/decodeplugins/dictionary/encoder/TraceGroup.java
changeset 56 aa2539c91954
parent 41 838cdffd57ce
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tracesrv/tracecompiler/src/com.nokia.tracecompiler/src/com/nokia/tracecompiler/decodeplugins/dictionary/encoder/TraceGroup.java	Fri Oct 08 14:56:39 2010 +0300
@@ -0,0 +1,107 @@
+/*
+* Copyright (c) 2008 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:
+*
+* Writes groups objects
+*
+*/
+package com.nokia.tracecompiler.decodeplugins.dictionary.encoder;
+
+/**
+ * Writes groups objects
+ * 
+ */
+public class TraceGroup {
+
+	/**
+	 * Writes <options>
+	 */
+	public static void startOptions() {
+		Options.startOptions(TagWriter.INDENT_3);
+	}
+
+	/**
+	 * Writes user defined tags <mytagXXX>value</mytagXXX>
+	 * 
+	 * @param tag
+	 *            user defined tag
+	 * @param value
+	 *            value of the tag
+	 */
+	public static void writeOption(String tag, String value) {
+		Options.writeOptions(tag, value, TagWriter.INDENT_4);
+	}
+
+	/**
+	 * Writes </options>
+	 */
+	public static void endOptions() {
+		Options.endOptions(TagWriter.INDENT_3);
+	}
+
+	/**
+	 * Starts <trace data-ref=""> structure
+	 * 
+	 * @param dataRef
+	 *            reference to actual data stored in <data> structure
+	 * @param name
+	 *            name of the trace. Can be null if trace doesn't have name            
+	 */
+	public static void startTrace(int dataRef, String name) {
+		Trace.startTrace(dataRef, name);
+	}
+
+	/**
+	 * Writes </trace>
+	 */
+	public static void endTrace() {
+		Trace.endTrace();
+	}
+
+	/**
+	 * Starts <group id="", name="" prefix="" suffix=""> structure
+	 * 
+	 * @param id
+	 *            unique group identifier within dictionary
+	 * @param name
+	 *            group name
+	 * @param prefix
+	 *            optional prefix for the group
+	 * @param suffix
+	 *            optional suffix for the group
+	 */
+	static void startGroup(int id, String name, String prefix, String suffix) {
+		StringBuffer sb = new StringBuffer();
+		sb.append(TagWriter.GROUP_START_OPEN);
+		TagWriter.appendAttribute(sb, TagWriter.ID_ATTR, String.valueOf(id),
+				false);
+		TagWriter.appendAttribute(sb, TagWriter.NAME_ATTR, name, true);
+		if (prefix != null) {
+			TagWriter.appendAttribute(sb, TagWriter.PREFIX_ATTR, prefix, true);
+		}
+		if (suffix != null) {
+			TagWriter.appendAttribute(sb, TagWriter.SUFFIX_ATTR, suffix, true);
+		}
+		sb.append(TagWriter.TAG_CLOSE);
+		TagWriter.write(sb.toString(), TagWriter.INDENT_2);
+
+	}
+
+	/**
+	 * Writes </group>
+	 */
+	static void endGroup() {
+		TagWriter.write(TagWriter.GROUP_END, TagWriter.INDENT_2);
+	}
+}
\ No newline at end of file