Skip to main content
summaryrefslogtreecommitdiffstats
blob: 4350211a8418a448104e6585e3b49f0b7cfece7f (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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
/***************************************************************************
 * Copyright (c) 2004 - 2008 Eike Stepper, Germany.
 * 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.internal.net4j.connector;

import org.eclipse.net4j.ITransportConfig;
import org.eclipse.net4j.buffer.IBuffer;
import org.eclipse.net4j.channel.IChannel;
import org.eclipse.net4j.connector.ConnectorException;
import org.eclipse.net4j.connector.ConnectorState;
import org.eclipse.net4j.connector.IConnector;
import org.eclipse.net4j.connector.IConnectorStateEvent;
import org.eclipse.net4j.protocol.ClientProtocolFactory;
import org.eclipse.net4j.protocol.IProtocol;
import org.eclipse.net4j.protocol.IProtocolProvider;
import org.eclipse.net4j.protocol.ServerProtocolFactory;
import org.eclipse.net4j.util.StringUtil;
import org.eclipse.net4j.util.ReflectUtil.ExcludeFromDump;
import org.eclipse.net4j.util.concurrent.TimeoutRuntimeException;
import org.eclipse.net4j.util.container.Container;
import org.eclipse.net4j.util.event.Event;
import org.eclipse.net4j.util.event.INotifier;
import org.eclipse.net4j.util.factory.FactoryKey;
import org.eclipse.net4j.util.factory.IFactoryKey;
import org.eclipse.net4j.util.lifecycle.LifecycleUtil;
import org.eclipse.net4j.util.om.monitor.MonitorUtil;
import org.eclipse.net4j.util.om.trace.ContextTracer;
import org.eclipse.net4j.util.security.INegotiationContext;
import org.eclipse.net4j.util.security.INegotiator;
import org.eclipse.net4j.util.security.NegotiationException;

import org.eclipse.internal.net4j.TransportConfig;
import org.eclipse.internal.net4j.bundle.OM;
import org.eclipse.internal.net4j.channel.Channel;

import org.eclipse.spi.net4j.InternalChannel;
import org.eclipse.spi.net4j.InternalConnector;

import java.text.MessageFormat;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;

/**
 * @author Eike Stepper
 */
public abstract class Connector extends Container<IChannel> implements InternalConnector
{
  private static final ContextTracer TRACER = new ContextTracer(OM.DEBUG_CONNECTOR, Connector.class);

  private String userID;

  private ITransportConfig config;

  private long channelTimeout = DEFAULT_CHANNEL_TIMEOUT;

  private transient ConnectorState connectorState = ConnectorState.DISCONNECTED;

  private transient InternalChannel[] channels = {};

  @ExcludeFromDump
  private transient Object channelsLock = new Object();

  @ExcludeFromDump
  private transient CountDownLatch finishedConnecting;

  @ExcludeFromDump
  private transient CountDownLatch finishedNegotiating;

  @ExcludeFromDump
  private transient INegotiationContext negotiationContext;

  @ExcludeFromDump
  private transient NegotiationException negotiationException;

  public Connector()
  {
  }

  public synchronized ITransportConfig getConfig()
  {
    if (config == null)
    {
      config = new TransportConfig();
    }

    return config;
  }

  public synchronized void setConfig(ITransportConfig config)
  {
    checkInactive();
    this.config = config;
  }

  public INegotiator getNegotiator()
  {
    return getConfig().getNegotiator();
  }

  public void setNegotiator(INegotiator negotiator)
  {
    getConfig().setNegotiator(negotiator);
  }

  public INegotiationContext getNegotiationContext()
  {
    return negotiationContext;
  }

  public long getChannelTimeout()
  {
    if (channelTimeout == DEFAULT_CHANNEL_TIMEOUT)
    {
      return OM.BUNDLE.getDebugSupport().getDebugOption("channel.timeout", 10000);
    }

    return channelTimeout;
  }

  public void setChannelTimeout(long channelTimeout)
  {
    this.channelTimeout = channelTimeout;
  }

  public boolean isClient()
  {
    return getLocation() == Location.CLIENT;
  }

  public boolean isServer()
  {
    return getLocation() == Location.SERVER;
  }

  public String getUserID()
  {
    return userID;
  }

  public void setUserID(String userID)
  {
    checkState(getState() != ConnectorState.CONNECTED, "Connector is already connected");
    if (TRACER.isEnabled())
    {
      TRACER.format("Setting userID {0} for {1}", userID, this);
    }

    this.userID = userID;
  }

  public ConnectorState getState()
  {
    return connectorState;
  }

  public void setState(ConnectorState newState) throws ConnectorException
  {
    ConnectorState oldState = getState();
    if (newState != oldState)
    {
      if (TRACER.isEnabled())
      {
        TRACER.format("Setting state {0} (was {1}) for {2}", newState, oldState.toString().toLowerCase(), this);
      }

      connectorState = newState;
      switch (newState)
      {
      case DISCONNECTED:
        if (finishedConnecting != null)
        {
          finishedConnecting.countDown();
          finishedConnecting = null;
        }

        if (finishedNegotiating != null)
        {
          finishedNegotiating.countDown();
          finishedNegotiating = null;
        }
        break;

      case CONNECTING:
        finishedConnecting = new CountDownLatch(1);
        finishedNegotiating = new CountDownLatch(1);
        // The concrete implementation must advance state to NEGOTIATING or CONNECTED
        break;

      case NEGOTIATING:
        finishedConnecting.countDown();
        negotiationContext = createNegotiationContext();
        getNegotiator().negotiate(negotiationContext);
        break;

      case CONNECTED:
        negotiationContext = null;
        deferredActivate();
        finishedConnecting.countDown();
        finishedNegotiating.countDown();
        break;
      }

      fireEvent(new ConnectorStateEvent(this, oldState, newState));
    }
  }

  public boolean isDisconnected()
  {
    return connectorState == ConnectorState.DISCONNECTED;
  }

  public boolean isConnecting()
  {
    return connectorState == ConnectorState.CONNECTING;
  }

  public boolean isNegotiating()
  {
    return connectorState == ConnectorState.NEGOTIATING;
  }

  public boolean isConnected()
  {
    if (negotiationException != null)
    {
      throw new ConnectorException("Connector negotiation failed", negotiationException);
    }

    return connectorState == ConnectorState.CONNECTED;
  }

  public void connectAsync() throws ConnectorException
  {
    try
    {
      activate();
    }
    catch (ConnectorException ex)
    {
      throw ex;
    }
    catch (Exception ex)
    {
      throw new ConnectorException(ex);
    }
  }

  public boolean waitForConnection(long timeout) throws ConnectorException
  {
    try
    {
      if (TRACER.isEnabled())
      {
        TRACER.trace("Waiting for connection...");
      }

      do
      {
        if (finishedNegotiating == null)
        {
          break;
        }

        if (finishedNegotiating.await(Math.min(100L, timeout), TimeUnit.MILLISECONDS))
        {
          break;
        }

        if (MonitorUtil.isCanceled())
        {
          break;
        }

        timeout -= 100L;
      } while (timeout > 0);

      return isConnected();
    }
    catch (InterruptedException ex)
    {
      return false;
    }
  }

  public boolean connect(long timeout) throws ConnectorException
  {
    connectAsync();
    return waitForConnection(timeout);
  }

  public ConnectorException disconnect()
  {
    Exception ex = deactivate();
    if (ex == null)
    {
      return null;
    }

    if (ex instanceof ConnectorException)
    {
      return (ConnectorException)ex;
    }

    return new ConnectorException(ex);
  }

  public final List<IChannel> getChannels()
  {
    List<IChannel> result = new ArrayList<IChannel>(0);
    synchronized (channelsLock)
    {
      for (int i = 0; i < channels.length; i++)
      {
        IChannel channel = channels[i];
        if (LifecycleUtil.isActive(channel))
        {
          result.add(channel);
        }
      }
    }

    return result;
  }

  @Override
  public boolean isEmpty()
  {
    return getElements().length == 0;
  }

  public IChannel[] getElements()
  {
    List<IChannel> list = getChannels();
    return list.toArray(new IChannel[list.size()]);
  }

  public InternalChannel openChannel() throws ConnectorException
  {
    return openChannel((IProtocol)null);
  }

  public InternalChannel openChannel(String protocolID, Object infraStructure) throws ConnectorException
  {
    IProtocol protocol = createProtocol(protocolID, infraStructure);
    if (protocol == null)
    {
      throw new IllegalArgumentException("Unknown protocolID: " + protocolID);
    }

    return openChannel(protocol);
  }

  public InternalChannel openChannel(IProtocol protocol) throws ConnectorException
  {
    long openChannelTimeout = getChannelTimeout();
    long start = System.currentTimeMillis();
    if (!waitForConnection(openChannelTimeout))
    {
      throw new ConnectorException("Connector not connected");
    }

    final long elapsed = System.currentTimeMillis() - start;
    InternalChannel channel = createChannel();
    initChannel(channel, protocol);
    addChannelWithoutIndex(channel);

    try
    {
      try
      {
        registerChannelWithPeer(channel.getChannelIndex(), openChannelTimeout - elapsed, protocol);
      }
      catch (TimeoutRuntimeException ex)
      {
        // Adjust the message for the complete timeout time
        throw new TimeoutRuntimeException("Registration timeout  after " + openChannelTimeout + " milliseconds");
      }
    }
    catch (ConnectorException ex)
    {
      throw ex;
    }
    catch (Exception ex)
    {
      throw new ConnectorException(ex);
    }

    return channel;
  }

  public InternalChannel inverseOpenChannel(short channelIndex, String protocolID)
  {
    IProtocol protocol = createProtocol(protocolID, null);

    InternalChannel channel = createChannel();
    initChannel(channel, protocol);
    channel.setChannelIndex(channelIndex);
    addChannelWithIndex(channel);
    return channel;
  }

  public final InternalChannel getChannel(short channelIndex)
  {
    int index = getChannelsArrayIndex(channelIndex);
    synchronized (channelsLock)
    {
      if (channels == null || index >= channels.length)
      {
        return null;
      }

      return channels[index];
    }
  }

  protected InternalChannel createChannel()
  {
    return new Channel();
  }

  private void initChannel(InternalChannel channel, IProtocol protocol)
  {
    channel.setChannelMultiplexer(this);
    channel.setReceiveExecutor(getConfig().getReceiveExecutor());
    channel.setUserID(getUserID());
    if (protocol != null)
    {
      protocol.setChannel(channel);
      LifecycleUtil.activate(protocol);
      if (TRACER.isEnabled())
      {
        String protocolType = protocol == null ? null : protocol.getType();
        TRACER.format("Opening channel with protocol {0}", protocolType);
      }

      channel.setReceiveHandler(protocol);
    }
    else
    {
      if (TRACER.isEnabled())
      {
        TRACER.trace("Opening channel without protocol");
      }
    }
  }

  private void addChannelWithIndex(InternalChannel channel)
  {
    short channelIndex = channel.getChannelIndex();
    int index = getChannelsArrayIndex(channelIndex);
    synchronized (channelsLock)
    {
      if (index >= channels.length)
      {
        InternalChannel[] newChannels = new InternalChannel[index + 1];
        System.arraycopy(channels, 0, newChannels, 0, channels.length);
        channels = newChannels;
      }

      channels[index] = channel;
    }

    LifecycleUtil.activate(channel);
    fireElementAddedEvent(channel);
  }

  private void addChannelWithoutIndex(InternalChannel channel)
  {
    final short INCREMENT = (short)(isClient() ? 1 : -1);
    short channelIndex = INCREMENT;
    synchronized (channelsLock)
    {
      for (;;)
      {
        int index = getChannelsArrayIndex(channelIndex);
        if (index >= channels.length)
        {
          channel.setChannelIndex(channelIndex);
          addChannelWithIndex(channel);
          return;
        }

        if (channels[index] == null)
        {
          channel.setChannelIndex(channelIndex);
          channels[index] = channel;

          LifecycleUtil.activate(channel);
          fireElementAddedEvent(channel);
          return;
        }

        channelIndex += INCREMENT;
      }
    }
  }

  public void closeChannel(IChannel channel) throws ConnectorException
  {
    InternalChannel internalChannel = (InternalChannel)channel;
    deregisterChannelFromPeer(internalChannel, getChannelTimeout());
    removeChannel(internalChannel, false);
  }

  public void inverseCloseChannel(short channelIndex) throws ConnectorException
  {
    InternalChannel channel = getChannel(channelIndex);
    if (channel != null && channel.isActive())
    {
      removeChannel(channel, true);
    }
  }

  private void removeChannel(InternalChannel channel, boolean inverse)
  {
    try
    {
      short channelIndex = channel.getChannelIndex();
      int index = getChannelsArrayIndex(channelIndex);
      synchronized (channelsLock)
      {
        if (index < channels.length)
        {
          if (channels[index] != channel)
          {
            throw new IllegalStateException("Wrong channel: " + channels[index]);
          }

          if (TRACER.isEnabled())
          {
            TRACER.trace("Removing " + channel);
          }

          if (index == channels.length - 1)
          {
            --index;
            while (index > 0 && channels[index] == null)
            {
              --index;
            }

            if (index == 0)
            {
              channels = new InternalChannel[0];
            }
            else
            {
              InternalChannel[] newChannels = new InternalChannel[index + 1];
              System.arraycopy(channels, 0, newChannels, 0, newChannels.length);
              channels = newChannels;
            }
          }
          else
          {
            channels[index] = null;
          }
        }
      }

      channel.finishDeactivate(inverse);
    }
    catch (RuntimeException ex)
    {
      OM.LOG.error(ex);
      throw ex;
    }
  }

  private int getChannelsArrayIndex(short channelIndex)
  {
    if (channelIndex < 0)
    {
      return ~channelIndex << 1;
    }

    return (channelIndex << 1) - 1;
  }

  public short getBufferCapacity()
  {
    return getConfig().getBufferProvider().getBufferCapacity();
  }

  public IBuffer provideBuffer()
  {
    return getConfig().getBufferProvider().provideBuffer();
  }

  public void retainBuffer(IBuffer buffer)
  {
    getConfig().getBufferProvider().retainBuffer(buffer);
  }

  protected void leaveConnecting()
  {
    if (getNegotiator() == null)
    {
      setState(ConnectorState.CONNECTED);
    }
    else
    {
      setState(ConnectorState.NEGOTIATING);
    }
  }

  protected abstract INegotiationContext createNegotiationContext();

  protected NegotiationException getNegotiationException()
  {
    return negotiationException;
  }

  protected void setNegotiationException(NegotiationException negotiationException)
  {
    this.negotiationException = negotiationException;
  }

  protected IProtocol createProtocol(String type, Object infraStructure)
  {
    if (StringUtil.isEmpty(type))
    {
      return null;
    }

    IProtocolProvider protocolProvider = getConfig().getProtocolProvider();
    if (protocolProvider == null)
    {
      throw new ConnectorException("No protocol provider configured");
    }

    IProtocol protocol = protocolProvider.getProtocol(type);
    if (protocol == null)
    {
      throw new ConnectorException("Invalid protocol factory: " + type);
    }

    protocol.setBufferProvider(getConfig().getBufferProvider());
    protocol.setExecutorService(getConfig().getReceiveExecutor());
    if (infraStructure != null)
    {
      protocol.setInfraStructure(infraStructure);
    }

    return protocol;
  }

  protected IFactoryKey createProtocolFactoryKey(String type)
  {
    switch (getLocation())
    {
    case SERVER:
      return new FactoryKey(ServerProtocolFactory.PRODUCT_GROUP, type);
    case CLIENT:
      return new FactoryKey(ClientProtocolFactory.PRODUCT_GROUP, type);
    default:
      throw new IllegalStateException();
    }
  }

  @Override
  protected boolean isDeferredActivation()
  {
    return true;
  }

  @Override
  protected void doBeforeActivate() throws Exception
  {
    super.doBeforeActivate();
    if (getConfig().getBufferProvider() == null)
    {
      throw new IllegalStateException("getConfig().getBufferProvider() == null");
    }
  }

  @Override
  protected void doActivate() throws Exception
  {
    super.doActivate();
    setState(ConnectorState.CONNECTING);
  }

  @Override
  protected void doDeactivate() throws Exception
  {
    setState(ConnectorState.DISCONNECTED);
    synchronized (channelsLock)
    {
      for (short i = 0; i < channels.length; i++)
      {
        InternalChannel channel = channels[i];
        if (channel != null)
        {
          LifecycleUtil.deactivate(channel);
        }
      }

      channels = new InternalChannel[0];
    }

    super.doDeactivate();
  }

  protected abstract void registerChannelWithPeer(short channelIndex, long timeout, IProtocol protocol)
      throws ConnectorException;

  protected abstract void deregisterChannelFromPeer(InternalChannel channel, long timeout) throws ConnectorException;

  /**
   * @author Eike Stepper
   */
  private static class ConnectorStateEvent extends Event implements IConnectorStateEvent
  {
    private static final long serialVersionUID = 1L;

    private ConnectorState oldState;

    private ConnectorState newState;

    public ConnectorStateEvent(INotifier notifier, ConnectorState oldState, ConnectorState newState)
    {
      super(notifier);
      this.oldState = oldState;
      this.newState = newState;
    }

    public IConnector getConnector()
    {
      return (IConnector)getSource();
    }

    public ConnectorState getOldState()
    {
      return oldState;
    }

    public ConnectorState getNewState()
    {
      return newState;
    }

    @Override
    public String toString()
    {
      return MessageFormat.format("ConnectorStateEvent[source={0}, oldState={1}, newState={2}]", getSource(),
          getOldState(), getNewState());
    }
  }
}

Back to the top