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
/*
 * Copyright (C) 2015 Benjamin Fry <benjaminfry@me.com>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

//! IPv4 address record data
//!
//! [RFC 1035, DOMAIN NAMES - IMPLEMENTATION AND SPECIFICATION, November 1987](https://tools.ietf.org/html/rfc1035)
//!
//! ```text
//! 3.4. Internet specific RRs
//!
//! 3.4.1. A RDATA format
//!
//!     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
//!     |                    ADDRESS                    |
//!     +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
//!
//! where:
//!
//! ADDRESS         A 32 bit Internet address.
//!
//! Hosts that have multiple Internet addresses will have multiple A
//! records.
//!
//! A records cause no additional section processing.  The RDATA section of
//! an A line in a master file is an Internet address expressed as four
//! decimal numbers separated by dots without any imbedded spaces (e.g.,
//! "10.2.0.52" or "192.0.5.6").
//! ```

use std::net::Ipv4Addr;

use ::serialize::txt::*;
use ::serialize::binary::*;
use ::error::*;

pub fn read(decoder: &mut BinDecoder) -> DecodeResult<Ipv4Addr> {
  Ok(Ipv4Addr::new(
    try!(decoder.pop()),
    try!(decoder.pop()),
    try!(decoder.pop()),
    try!(decoder.pop()))
  )
}

pub fn emit(encoder: &mut BinEncoder, address: &Ipv4Addr) -> EncodeResult {
  let segments = address.octets();

  try!(encoder.emit(segments[0]));
  try!(encoder.emit(segments[1]));
  try!(encoder.emit(segments[2]));
  try!(encoder.emit(segments[3]));
  Ok(())
}

pub fn parse(tokens: &Vec<Token>) -> ParseResult<Ipv4Addr> {
  let mut token = tokens.iter();

  let address: Ipv4Addr = try!(token.next().ok_or(ParseError::MissingToken("ipv4 address".to_string())).and_then(|t| if let &Token::CharData(ref s) = t {Ok(try!(s.parse()))} else {Err(ParseError::UnexpectedToken(t.clone()))} ));
  Ok(address)
}

#[cfg(test)]
mod mytests {
  use std::net::Ipv4Addr;
  use std::str::FromStr;

  use super::*;
  use ::serialize::binary::bin_tests::{test_read_data_set, test_emit_data_set};

  fn get_data() -> Vec<(Ipv4Addr, Vec<u8>)> {
    vec![
    (Ipv4Addr::from_str("0.0.0.0").unwrap(), vec![0,0,0,0]), // base case
    (Ipv4Addr::from_str("1.0.0.0").unwrap(), vec![1,0,0,0]),
    (Ipv4Addr::from_str("0.1.0.0").unwrap(), vec![0,1,0,0]),
    (Ipv4Addr::from_str("0.0.1.0").unwrap(), vec![0,0,1,0]),
    (Ipv4Addr::from_str("0.0.0.1").unwrap(), vec![0,0,0,1]),
    (Ipv4Addr::from_str("127.0.0.1").unwrap(), vec![127,0,0,1]),
    (Ipv4Addr::from_str("192.168.64.32").unwrap(), vec![192,168,64,32]),
    ]
  }

  #[test]
  fn test_parse() {
    test_read_data_set(get_data(), |ref mut d| read(d));
  }

  #[test]
  fn test_write_to() {
    test_emit_data_set(get_data(), |ref mut e, d| emit(e, &d));
  }
}