// Copyright (c) 2012 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. /** * This view displays information on the host resolver: * * - Shows the default address family. * - Has a button to enable IPv6, if it is disabled. * - Shows the current host cache contents. * - Has a button to clear the host cache. * - Shows the parameters used to construct the host cache (capacity, ttl). */ // TODO(mmenke): Add links for each address entry to the corresponding NetLog // source. This could either be done by adding NetLog source ids // to cache entries, or tracking sources based on their type and // description. Former is simpler, latter may be useful // elsewhere as well. var DnsView = (function() { 'use strict'; // We inherit from DivView. var superClass = DivView; /** * @constructor */ function DnsView() { assertFirstConstructorCall(DnsView); // Call superclass's constructor. superClass.call(this, DnsView.MAIN_BOX_ID); $(DnsView.ENABLE_IPV6_BUTTON_ID).onclick = g_browser.enableIPv6.bind(g_browser); $(DnsView.CLEAR_CACHE_BUTTON_ID).onclick = g_browser.sendClearHostResolverCache.bind(g_browser); // Register to receive changes to the host resolver info. g_browser.addHostResolverInfoObserver(this, false); } // ID for special HTML element in category_tabs.html DnsView.TAB_HANDLE_ID = 'tab-handle-dns'; // IDs for special HTML elements in dns_view.html DnsView.MAIN_BOX_ID = 'dns-view-tab-content'; DnsView.CACHE_TBODY_ID = 'dns-view-cache-tbody'; DnsView.CLEAR_CACHE_BUTTON_ID = 'dns-view-clear-cache'; DnsView.DEFAULT_FAMILY_SPAN_ID = 'dns-view-default-family'; DnsView.IPV6_DISABLED_SPAN_ID = 'dns-view-ipv6-disabled'; DnsView.ENABLE_IPV6_BUTTON_ID = 'dns-view-enable-ipv6'; DnsView.CAPACITY_SPAN_ID = 'dns-view-cache-capacity'; DnsView.ACTIVE_SPAN_ID = 'dns-view-cache-active'; DnsView.EXPIRED_SPAN_ID = 'dns-view-cache-expired'; DnsView.TTL_SUCCESS_SPAN_ID = 'dns-view-cache-ttl-success'; DnsView.TTL_FAILURE_SPAN_ID = 'dns-view-cache-ttl-failure'; cr.addSingletonGetter(DnsView); DnsView.prototype = { // Inherit the superclass's methods. __proto__: superClass.prototype, onLoadLogFinish: function(data) { return this.onHostResolverInfoChanged(data.hostResolverInfo); }, onHostResolverInfoChanged: function(hostResolverInfo) { // Clear the existing values. $(DnsView.DEFAULT_FAMILY_SPAN_ID).innerHTML = ''; $(DnsView.CAPACITY_SPAN_ID).innerHTML = ''; $(DnsView.CACHE_TBODY_ID).innerHTML = ''; $(DnsView.ACTIVE_SPAN_ID).innerHTML = '0'; $(DnsView.EXPIRED_SPAN_ID).innerHTML = '0'; // No info. if (!hostResolverInfo || !hostResolverInfo.cache) return false; var family = hostResolverInfo.default_address_family; addTextNode($(DnsView.DEFAULT_FAMILY_SPAN_ID), addressFamilyToString(family)); var ipv6Disabled = (family == AddressFamily.ADDRESS_FAMILY_IPV4); setNodeDisplay($(DnsView.IPV6_DISABLED_SPAN_ID), ipv6Disabled); // Fill in the basic cache information. var hostResolverCache = hostResolverInfo.cache; $(DnsView.CAPACITY_SPAN_ID).innerText = hostResolverCache.capacity; var expiredEntries = 0; // Date the cache was logged. This will be either now, when actively // logging data, or the date the log dump was created. var logDate; if (MainView.isViewingLoadedLog()) { logDate = new Date(ClientInfo.numericDate); } else { logDate = new Date(); } // Fill in the cache contents table. for (var i = 0; i < hostResolverCache.entries.length; ++i) { var e = hostResolverCache.entries[i]; var tr = addNode($(DnsView.CACHE_TBODY_ID), 'tr'); var hostnameCell = addNode(tr, 'td'); addTextNode(hostnameCell, e.hostname); var familyCell = addNode(tr, 'td'); addTextNode(familyCell, addressFamilyToString(e.address_family)); var addressesCell = addNode(tr, 'td'); if (e.error != undefined) { var errorText = e.error + ' (' + netErrorToString(e.error) + ')'; var errorNode = addTextNode(addressesCell, 'error: ' + errorText); changeClassName(addressesCell, 'warning-text', true); } else { for (var j = 0; j < e.addresses.length; ++j) { var address = e.addresses[j]; if (j != 0) addNode(addressesCell, 'br'); addTextNode(addressesCell, address); } } var expiresDate = timeutil.convertTimeTicksToDate(e.expiration); var expiresCell = addNode(tr, 'td'); timeutil.addNodeWithDate(expiresCell, expiresDate); if (logDate > timeutil.convertTimeTicksToDate(e.expiration)) { ++expiredEntries; var expiredSpan = addNode(expiresCell, 'span'); changeClassName(expiredSpan, 'warning-text', true); addTextNode(expiredSpan, ' [Expired]'); } } $(DnsView.ACTIVE_SPAN_ID).innerText = hostResolverCache.entries.length - expiredEntries; $(DnsView.EXPIRED_SPAN_ID).innerText = expiredEntries; return true; } }; return DnsView; })();