View Javadoc
1   /*
2    * Copyright 2015 The Netty Project
3    *
4    * The Netty Project licenses this file to you under the Apache License,
5    * version 2.0 (the "License"); you may not use this file except in compliance
6    * with the License. You may obtain a copy of the License at:
7    *
8    *   https://www.apache.org/licenses/LICENSE-2.0
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12   * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13   * License for the specific language governing permissions and limitations
14   * under the License.
15   */
16  package io.netty.handler.codec.dns;
17  
18  import io.netty.buffer.ByteBuf;
19  import io.netty.channel.AddressedEnvelope;
20  import io.netty.channel.ChannelHandler;
21  import io.netty.channel.ChannelHandlerContext;
22  import io.netty.channel.socket.DatagramPacket;
23  import io.netty.handler.codec.MessageToMessageEncoder;
24  import io.netty.util.internal.UnstableApi;
25  
26  import java.net.InetSocketAddress;
27  import java.util.List;
28  
29  import static io.netty.util.internal.ObjectUtil.checkNotNull;
30  
31  /**
32   * Encodes a {@link DatagramDnsResponse} (or an {@link AddressedEnvelope} of {@link DnsResponse}} into a
33   * {@link DatagramPacket}.
34   */
35  @UnstableApi
36  @ChannelHandler.Sharable
37  public class DatagramDnsResponseEncoder
38      extends MessageToMessageEncoder<AddressedEnvelope<DnsResponse, InetSocketAddress>> {
39  
40      private final DnsRecordEncoder recordEncoder;
41  
42      /**
43       * Creates a new encoder with {@linkplain DnsRecordEncoder#DEFAULT the default record encoder}.
44       */
45      public DatagramDnsResponseEncoder() {
46          this(DnsRecordEncoder.DEFAULT);
47      }
48  
49      /**
50       * Creates a new encoder with the specified {@code recordEncoder}.
51       */
52      public DatagramDnsResponseEncoder(DnsRecordEncoder recordEncoder) {
53          this.recordEncoder = checkNotNull(recordEncoder, "recordEncoder");
54      }
55  
56      @Override
57      protected void encode(ChannelHandlerContext ctx,
58                            AddressedEnvelope<DnsResponse, InetSocketAddress> in, List<Object> out) throws Exception {
59  
60          final InetSocketAddress recipient = in.recipient();
61          final DnsResponse response = in.content();
62          final ByteBuf buf = allocateBuffer(ctx, in);
63  
64          DnsMessageUtil.encodeDnsResponse(recordEncoder, response, buf);
65  
66          out.add(new DatagramPacket(buf, recipient, null));
67      }
68  
69      /**
70       * Allocate a {@link ByteBuf} which will be used for constructing a datagram packet.
71       * Sub-classes may override this method to return a {@link ByteBuf} with a perfect matching initial capacity.
72       */
73      protected ByteBuf allocateBuffer(
74          ChannelHandlerContext ctx,
75          @SuppressWarnings("unused") AddressedEnvelope<DnsResponse, InetSocketAddress> msg) throws Exception {
76          return ctx.alloc().ioBuffer(1024);
77      }
78  }