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.netty5.handler.codec.dns;
17  
18  import io.netty5.channel.ChannelHandlerContext;
19  import io.netty5.channel.socket.DatagramPacket;
20  import io.netty5.handler.codec.MessageToMessageDecoder;
21  import io.netty5.util.internal.UnstableApi;
22  
23  import static java.util.Objects.requireNonNull;
24  
25  /**
26   * Decodes a {@link DatagramPacket} into a {@link DatagramDnsQuery}.
27   */
28  @UnstableApi
29  public class DatagramDnsQueryDecoder extends MessageToMessageDecoder<DatagramPacket> {
30  
31      private final DnsRecordDecoder recordDecoder;
32  
33      /**
34       * Creates a new decoder with {@linkplain DnsRecordDecoder#DEFAULT the default record decoder}.
35       */
36      public DatagramDnsQueryDecoder() {
37          this(DnsRecordDecoder.DEFAULT);
38      }
39  
40      /**
41       * Creates a new decoder with the specified {@code recordDecoder}.
42       */
43      public DatagramDnsQueryDecoder(DnsRecordDecoder recordDecoder) {
44          this.recordDecoder = requireNonNull(recordDecoder, "recordDecoder");
45      }
46  
47      @Override
48      public boolean isSharable() {
49          return true;
50      }
51  
52      @Override
53      protected void decode(ChannelHandlerContext ctx, DatagramPacket packet) throws Exception {
54          DnsQuery query = DnsMessageUtil.decodeDnsQuery(recordDecoder, ctx.bufferAllocator(), packet.content(),
55                  (id, dnsOpCode) -> new DatagramDnsQuery(packet.sender(), packet.recipient(), id, dnsOpCode));
56          ctx.fireChannelRead(query);
57      }
58  }