Qt:Документация 4.3.2/q3dns

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] Q3Dns Class Reference
[ Qt3Support module]

The Q3Dns class provides asynchronous DNS lookups. Далее...

 #include <Q3Dns>

This class is part of the Qt 3 support library. It is provided to keep old source code working. Мы настоятельно не рекомендуем использовать этот класс в новом коде. See Porting to Qt 4 for more information.

Note to Qt Desktop Light Edition users: This class is only available in the Qt Desktop Edition.

Inherits QObject.

[править] Открытые типы

[править] Открытые функции

  • 29 открытых функций, унаследованных от QObject

[править] Сигналы

  • 1 сигнал, унаследованный от QObject

[править] Дополнительные унаследованные члены

  • 1 свойство, унаследованное от QObject
  • 1 открытый слот, унаследованный от QObject
  • 5 статических открытых членов, унаследованных от QObject
  • 7 защищенных функций, унаследованных от QObject

[править] Подробное описание

The Q3Dns class provides asynchronous DNS lookups.

Both Windows and Unix provide synchronous DNS lookups; Windows provides some asynchronous support too. At the time of writing neither operating system provides asynchronous support for anything other than hostname-to-address mapping.

Q3Dns rectifies this shortcoming, by providing asynchronous caching lookups for the record types that we expect modern GUI applications to need in the near future.

The class is not straightforward to use (although it is much simpler than the native APIs); Q3Socket provides much easier to use TCP connection facilities. The aim of Q3Dns is to provide a correct and small API to the DNS and nothing more. (We use "correctness" to mean that the DNS information is correctly cached, and correctly timed out.)

The API comprises a constructor, functions to set the DNS node (the domain in DNS terminology) and record type ( setLabel() and setRecordType()), the corresponding get functions, an isWorking() function to determine whether Q3Dns is working or reading, a resultsReady() signal and query functions for the result.

There is one query function for each RecordType, namely addresses(), mailServers(), servers(), hostNames() and texts(). There are also two generic query functions: canonicalName() returns the name you'll presumably end up using (the exact meaning of this depends on the record type) and qualifiedNames() returns a list of the fully qualified names label() maps to.

See also Q3Socket.


[править] Описание типов

[править]
enum Q3Dns::RecordType

This enum type defines the record types Q3Dns can handle. The DNS provides many more; these are the ones we've judged to be in current use, useful for GUI programs and important enough to support right away:


Константа Значение Описание
Q3Dns::None 0 No information. This exists only so that Q3Dns can have a default.
Q3Dns::A 1 IPv4 addresses. By far the most common type.
Q3Dns::Aaaa 2 IPv6 addresses. So far mostly unused.
Q3Dns::Mx 3 Mail eXchanger names. Used for mail delivery.
Q3Dns::Srv 4 SeRVer names. Generic record type for finding servers. So far mostly unused.
Q3Dns::Cname 5 Canonical names. Maps from nicknames to the true name (the canonical name) for a host.
Q3Dns::Ptr 6 name PoinTeRs. Maps from IPv4 or IPv6 addresses to hostnames.
Q3Dns::Txt 7 arbitrary TeXT for domains.

We expect that some support for the RFC 2535 extensions will be added in future versions.


[править] Описание функций-членов

[править]
Q3Dns::Q3Dns ()

Constructs a DNS query object with invalid settings for both the label and the search type.

[править]
Q3Dns::Q3Dns ( const QString & label, RecordType rr = A )

Constructs a DNS query object that will return record type rr information about label.

The DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted.

rr defaults to A, IPv4 addresses.

[править]
Q3Dns::Q3Dns ( const QHostAddress & address, RecordType rr = Ptr )

Constructs a DNS query object that will return record type rr information about host address address. The label is set to the IN-ADDR.ARPA domain name. This is useful in combination with the Ptr record type (e.g. if you want to look up a hostname for a given address).

The DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted.

rr defaults to Ptr, that maps addresses to hostnames.

[править]
Q3Dns::~Q3Dns () [virtual]

Destroys the DNS query object and frees its allocated resources.

[править]
Q3ValueList< QHostAddress> Q3Dns::addresses () const

Returns a list of the addresses for this name if this Q3Dns object has a recordType() of Q3Dns::A or Q3Dns::Aaaa and the answer is available; otherwise returns an empty list.

As a special case, if label() is a valid numeric IP address, this function returns that address.

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

 Q3ValueList<QHostAddress> list = myDns.addresses();
 Q3ValueList<QHostAddress>::Iterator it = list.begin();
 while( it != list.end() ) {
     myProcessing( *it );
     ++it;
 }

[править]
QString Q3Dns::canonicalName () const

Returns the canonical name for this DNS node. (This works regardless of what recordType() is set to.)

If the canonical name isn't known, this function returns a null string.

The canonical name of a DNS node is its full name, or the full name of the target of its CNAME. For example, if l.trolltech.com is a CNAME to lillian.troll.no, and the search path for Q3Dns is "trolltech.com", then the canonical name for all of "lillian", "l", "lillian.troll.no." and "l.trolltech.com" is "lillian.troll.no.".

[править]
QStringList Q3Dns::hostNames () const

Returns a list of host names if the record type is Ptr.

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

 QStringList list = myDns.hostNames();
 QStringList::Iterator it = list.begin();
 while( it != list.end() ) {
     myProcessing( *it );
     ++it;
 }

[править]
bool Q3Dns::isWorking () const

Returns true if Q3Dns is doing a lookup for this object (i.e. if it does not already have the necessary information); otherwise returns false.

Q3Dns emits the resultsReady() signal when the status changes to false.

[править]
QString Q3Dns::label () const

Returns the domain name for which this object returns information.

See also setLabel().

[править]
Q3ValueList<MailServer> Q3Dns::mailServers () const

Returns a list of mail servers if the record type is Mx. The class Q3Dns::MailServer contains the following public variables:

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

 Q3ValueList<Q3Dns::MailServer> list = myDns.mailServers();
 Q3ValueList<Q3Dns::MailServer>::Iterator it = list.begin();
 while( it != list.end() ) {
     myProcessing( *it );
     ++it;
 }

[править]
QStringList Q3Dns::qualifiedNames () const

Returns a list of the fully qualified names label() maps to.

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

 QStringList list = myDns.qualifiedNames();
 QStringList::Iterator it = list.begin();
 while( it != list.end() ) {
     myProcessing( *it );
     ++it;
 }

[править]
RecordType Q3Dns::recordType () const

Returns the record type of this DNS query object.

See also setRecordType() and RecordType.

[править]
void Q3Dns::resultsReady () [signal]

This signal is emitted when results are available for one of the qualifiedNames().

[править]
Q3ValueList<Server> Q3Dns::servers () const

Returns a list of servers if the record type is Srv. The class Q3Dns::Server contains the following public variables:

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

 Q3ValueList<Q3Dns::Server> list = myDns.servers();
 Q3ValueList<Q3Dns::Server>::Iterator it = list.begin();
 while( it != list.end() ) {
     myProcessing( *it );
     ++it;
 }

[править]
void Q3Dns::setLabel ( const QString & label ) [virtual]

Sets this DNS query object to query for information about label.

This does not change the recordType(), but its isWorking() status will probably change as a result.

The DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted.

See also label().

[править]
void Q3Dns::setLabel ( const QHostAddress & address ) [virtual]

Эта перегруженная функция предоставлена для удобства.

Sets this DNS query object to query for information about the host address address. The label is set to the IN-ADDR.ARPA domain name. This is useful in combination with the Ptr record type (e.g. if you want to look up a hostname for a given address).

[править]
void Q3Dns::setRecordType ( RecordType rr = A ) [virtual]

Sets this object to query for record type rr records.

The DNS lookup is started the next time the application enters the event loop. When the result is found the signal resultsReady() is emitted.

See also recordType() and RecordType.

[править]
QStringList Q3Dns::texts () const

Returns a list of texts if the record type is Txt.

Note that if you want to iterate over the list, you should iterate over a copy, e.g.

 QStringList list = myDns.texts();
 QStringList::Iterator it = list.begin();
 while( it != list.end() ) {
     myProcessing( *it );
     ++it;
 }

Copyright © 2007 Trolltech Trademarks
Qt 4.3.2