Reverse domain name notation
This article relies largely or entirely on a single source. (May 2011) |
Reverse domain name notation (or reverse-DNS) is a naming convention for the components, packages, and types used by a programming language, system or framework. A characteristic of reverse-DNS strings is that they are based on registered domain names, and are only reversed for sorting purposes. For example, if a company making a product called "MyProduct" has the registered domain name "example.com", they could use the reverse-DNS string "com.example.MyProduct" to describe it. Reverse-DNS names are a simple way of reducing name-space collisions, since any domain name is registered by only one party at a time.
History
Reverse-DNS first became widely used with the Java platform, and has since been used for other systems, for example, ActionScript 3 packages and Android applications.[citation needed]
Examples
Examples of systems that use reverse-DNS are Sun Microsystems' Java platform and Apple's Uniform Type Identifier or UTI. The Android operating system also makes use of the notation for classifying applications, as the Dalvik virtual machine made use of Java.
dconf which is the configuration back end used by GNOME.
Example of reverse-DNS strings are:
- com.adobe.postscript-font (UTI string for Adobe Systems's PostScript fonts)
- com.apple.ostype (UTI string for Apple's OSType)
- org.omg.CORBA (Java library for CORBA)
- org.w3c.dom (Java library for W3C's DOM)
Regular expression
^[A-Za-z]{2,6}((?!-)\.[A-Za-z0-9-]{1,63}(?<!-))+$
Code
C#
static string ReverseDomainName(string domain)
{
return string.Join(".", domain.Split('.').Reverse());
}
Java 8 and later
static String reverseDomain(final String domain) {
final List<String> components = Arrays.asList(domain.split("\\."));
Collections.reverse(components);
return String.join(".", components);
}
JavaScript
function reverseDomain(domain) {
return domain.split('.').reverse().join('.');
}
PHP
function reverseDomain($domain) {
return implode('.', array_reverse(explode('.', $domain)));
}
Python
def reverse_domain(domain):
return '.'.join(reversed(domain.split('.')))
Ruby
def reverse_domain(domain)
domain.split('.').reverse.join('.')
end
Swift
func reversed(domain: String) -> String {
return domain
.components(separatedBy: ".")
.reversed()
.joined(separator: ".")
}
Zsh
function reverse_domain() {
echo ${(j:.:)${(Oa)${(s:.:)1}}}
}
References
- "Apple Developer Connection: Introduction to Uniform Type Identifiers Overview". 2005-11-09. Retrieved 2013-04-04.