Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 065bf56a888ac3d227295e4e00d38ddfb905d614 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
 * Copyright (c) 2016, 2019 Eike Stepper (Loehne, Germany) and others.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *    Eike Stepper - initial API and implementation
 */
package org.eclipse.emf.cdo.server.internal.embedded;

import org.eclipse.emf.cdo.net4j.CDONet4jSession;
import org.eclipse.emf.cdo.spi.server.InternalRepository;
import org.eclipse.emf.cdo.spi.server.InternalSession;
import org.eclipse.emf.cdo.spi.server.InternalSessionManager;

import org.eclipse.net4j.util.event.IListener;
import org.eclipse.net4j.util.lifecycle.ILifecycle;
import org.eclipse.net4j.util.lifecycle.LifecycleException;
import org.eclipse.net4j.util.lifecycle.LifecycleState;

/**
 * @author Eike Stepper
 */
public abstract class AbstractClientManager<T extends ILifecycle> implements ILifecycle
{
  protected final T delegate;

  protected CDONet4jSession clientSession;

  protected InternalSession serverSession;

  private LifecycleState lifecycleState = LifecycleState.INACTIVE;

  public AbstractClientManager(T delegate)
  {
    this.delegate = delegate;
  }

  @Override
  public boolean hasListeners()
  {
    return delegate.hasListeners();
  }

  @Override
  public IListener[] getListeners()
  {
    return delegate.getListeners();
  }

  @Override
  public void addListener(IListener listener)
  {
    delegate.addListener(listener);
  }

  @Override
  public void removeListener(IListener listener)
  {
    delegate.removeListener(listener);
  }

  @Override
  public LifecycleState getLifecycleState()
  {
    return lifecycleState;
  }

  @Override
  public boolean isActive()
  {
    return lifecycleState == LifecycleState.ACTIVE;
  }

  @Override
  public void activate() throws LifecycleException
  {
    lifecycleState = LifecycleState.ACTIVE;
  }

  @Override
  public Exception deactivate()
  {
    lifecycleState = LifecycleState.INACTIVE;
    clientSession = null;
    serverSession = null;
    return null;
  }

  protected final void initServerSession(CDONet4jSession clientSession)
  {
    this.clientSession = clientSession;

    InternalRepository repository = getRepository(delegate);
    InternalSessionManager sessionManager = repository.getSessionManager();
    serverSession = sessionManager.getSession(clientSession.getSessionID());
  }

  protected abstract InternalRepository getRepository(T delegate);
}

Back to the top