Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: caf353a79289cd9a09f5a9467bae50106183799e (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
/*
 * Copyright (c) 2004 - 2011 Eike Stepper (Berlin, 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.net4j.buddies.internal.server.protocol;

import org.eclipse.net4j.buddies.internal.common.protocol.MessageIndication;
import org.eclipse.net4j.buddies.internal.common.protocol.ProtocolConstants;
import org.eclipse.net4j.buddies.internal.server.ServerSession;
import org.eclipse.net4j.buddies.server.IBuddyAdmin;
import org.eclipse.net4j.signal.SignalProtocol;
import org.eclipse.net4j.signal.SignalReactor;
import org.eclipse.net4j.util.container.IManagedContainer;

/**
 * @author Eike Stepper
 * @since 2.0
 */
public class BuddiesServerProtocol extends SignalProtocol<ServerSession>
{
  public BuddiesServerProtocol()
  {
    super(ProtocolConstants.PROTOCOL_NAME);
  }

  @Override
  protected SignalReactor createSignalReactor(short signalID)
  {
    switch (signalID)
    {
    case ProtocolConstants.SIGNAL_OPEN_SESSION:
      return new OpenSessionIndication(this);

    case ProtocolConstants.SIGNAL_LOAD_ACCOUNT:
      return new LoadAccountIndication(this);

    case ProtocolConstants.SIGNAL_BUDDY_STATE:
      return new ServerBuddyStateIndication(this);

    case ProtocolConstants.SIGNAL_INSTALL_FACILITY:
      return new InstallFacilityIndication(this);

    case ProtocolConstants.SIGNAL_INITIATE_COLLABORATION:
      return new InitiateCollaborationIndication(this);

    case ProtocolConstants.SIGNAL_INVITE_BUDDIES:
      return new InviteBuddiesIndication(this);

    case ProtocolConstants.SIGNAL_COLLABORATION_LEFT:
      return new ServerCollaborationLeftIndication(this);

    case ProtocolConstants.SIGNAL_MESSAGE:
      return new MessageIndication(this, IBuddyAdmin.INSTANCE);

    default:
      return super.createSignalReactor(signalID);
    }
  }

  /**
   * @author Eike Stepper
   */
  public static class Factory extends org.eclipse.spi.net4j.ServerProtocolFactory
  {
    public Factory()
    {
      super(ProtocolConstants.PROTOCOL_NAME);
    }

    public BuddiesServerProtocol create(String description)
    {
      return new BuddiesServerProtocol();
    }

    public static BuddiesServerProtocol get(IManagedContainer container, String description)
    {
      return (BuddiesServerProtocol)container.getElement(PRODUCT_GROUP, ProtocolConstants.PROTOCOL_NAME, description);
    }
  }
}

Back to the top