ss: Move ownership of the SSID to the backend
[deliverable/tracecompass.git] / org.eclipse.tracecompass.statesystem.core / src / org / eclipse / tracecompass / statesystem / core / StateSystemFactory.java
1 /*******************************************************************************
2 * Copyright (c) 2014 Ericsson
3 *
4 * All rights reserved. This program and the accompanying materials are
5 * made available under the terms of the Eclipse Public License v1.0 which
6 * accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Alexandre Montplaisir - Initial API and implementation
11 ******************************************************************************/
12
13 package org.eclipse.tracecompass.statesystem.core;
14
15 import java.io.IOException;
16
17 import org.eclipse.jdt.annotation.NonNullByDefault;
18 import org.eclipse.tracecompass.internal.statesystem.core.StateSystem;
19 import org.eclipse.tracecompass.statesystem.core.backend.IStateHistoryBackend;
20
21 /**
22 * Factory to create state systems.
23 *
24 * Since state system are meant to be accessed using the {@link ITmfStateSystem}
25 * and {@link ITmfStateSystemBuilder} interfaces, you can use this factory to
26 * instantiate new ones.
27 *
28 * @author Alexandre Montplaisir
29 * @since 3.0
30 */
31 @NonNullByDefault
32 public final class StateSystemFactory {
33
34 private StateSystemFactory() {}
35
36 /**
37 * New-file factory method. For when you build a state system with a new
38 * file, or if the back-end does not require a file on disk.
39 *
40 * @param backend
41 * Back-end plugin to use
42 * @return The new state system
43 */
44 public static ITmfStateSystemBuilder newStateSystem(IStateHistoryBackend backend) {
45 return new StateSystem(backend);
46 }
47
48 /**
49 * General factory method. The backend may try to open or create a file on
50 * disk (the file contents and location are defined by the backend).
51 *
52 * @param backend
53 * The "state history storage" back-end to use.
54 * @param newFile
55 * Put true if this is a new history started from scratch (any
56 * existing file will be overwritten).
57 * @return The new state system
58 * @throws IOException
59 * If there was a problem creating the new history file
60 */
61 public static ITmfStateSystemBuilder newStateSystem(IStateHistoryBackend backend,
62 boolean newFile) throws IOException {
63 return new StateSystem(backend, newFile);
64 }
65
66 }
This page took 0.033393 seconds and 6 git commands to generate.