IPSocketAddress.st
author Claus Gittinger <cg@exept.de>
Wed, 07 Aug 2013 18:06:08 +0200
changeset 3070 58c5d590c68e
parent 3057 ac2356ba61ca
child 3136 f46a935ba037
permissions -rw-r--r--
class: IPSocketAddress changed: #localHost
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     1
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     2
 COPYRIGHT (c) 1995 by Claus Gittinger
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
     3
	      All Rights Reserved
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     4
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     5
 This software is furnished under a license and may be used
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     6
 only in accordance with the terms of that license and with the
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     7
 inclusion of the above copyright notice.   This software may not
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     8
 be provided or otherwise made available to, or used by, any
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
     9
 other person.  No title to or ownership of the software is
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    10
 hereby transferred.
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    11
"
1023
12bc2a0f60b5 + bytesToName:
Claus Gittinger <cg@exept.de>
parents: 818
diff changeset
    12
"{ Package: 'stx:libbasic2' }"
12bc2a0f60b5 + bytesToName:
Claus Gittinger <cg@exept.de>
parents: 818
diff changeset
    13
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
    14
SocketAddress variableByteSubclass:#IPSocketAddress
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
    15
	instanceVariableNames:''
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    16
	classVariableNames:'CacheInvalidationTimeInterval AddressCacheSize NameCacheSize'
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
    17
	poolDictionaries:''
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
    18
	category:'OS-Sockets'
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    19
!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    20
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    21
IPSocketAddress class instanceVariableNames:'addrCache nameCache'
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    22
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    23
"
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    24
 No other class instance variables are inherited by this class.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    25
"
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    26
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
    27
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    28
!IPSocketAddress class methodsFor:'documentation'!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    29
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    30
copyright
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    31
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    32
 COPYRIGHT (c) 1995 by Claus Gittinger
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
    33
	      All Rights Reserved
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    34
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    35
 This software is furnished under a license and may be used
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    36
 only in accordance with the terms of that license and with the
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    37
 inclusion of the above copyright notice.   This software may not
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    38
 be provided or otherwise made available to, or used by, any
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    39
 other person.  No title to or ownership of the software is
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    40
 hereby transferred.
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    41
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    42
!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    43
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    44
documentation
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    45
"
111
92392ae9a0f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 100
diff changeset
    46
    Instances of IPSocketAddress represent tcp/ip-domain socket addresses.
92392ae9a0f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 100
diff changeset
    47
    These consist of an ip address (4 bytes) and a port number.
92392ae9a0f0 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 100
diff changeset
    48
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    49
    Notice that for performance, name and address translations are cached here
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    50
    for some time, in order to speed up heavy lookup such as when operating a webserver or similar
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    51
    application which does many address-to-hostname translations.
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    52
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    53
    For systems, when the name translation is fast (unix), you may want to disable it,
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    54
    as it prevents new addresses to be detected for some time (for example, if the own address
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    55
    changes due to a new dhcp address being aquired).
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    56
    You can also change the cacheing-interval time 
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    57
    (see caching protocol, flush*Cache, cachingIntervalTime, *CacheSize).
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    58
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    59
    [author:]
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
    60
        Claus Gittinger
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    61
"
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    62
! !
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
    63
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    64
!IPSocketAddress class methodsFor:'instance creation'!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    65
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    66
addressString:aString
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    67
    "convert an address given in a dot notation like 123.456.78.9"
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    68
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    69
    ^ self hostAddress:(self hostAddressFromString:aString).
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    70
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    71
    "
1585
32eba58e5498 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 1559
diff changeset
    72
     IPSocketAddress addressString:'1.2.3.4'
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    73
    "
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    74
!
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
    75
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    76
allForHostName:name serviceName:portNrOrName type:socketTypeSymbol
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    77
    "get a collection of new instance given a hostname, port or service and type.
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    78
     Multi-homed hosts return more than one entry
1262
d3daddd36a99 no longer callBack into sockets getHostName/getAddress code.
Claus Gittinger <cg@exept.de>
parents: 1261
diff changeset
    79
     Redefined to cache the result of the name-lookup."
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    80
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    81
    |addressList|
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    82
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    83
    portNrOrName isString ifTrue:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    84
        ^ super allForHostName:name serviceName:portNrOrName type:socketTypeSymbol
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    85
    ].
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    86
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    87
    addressList := self addressCacheAt:name.
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    88
    addressList notNil ifTrue:[
2172
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    89
        addressList := addressList 
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    90
                            collect:[:eachSocketAddress| |sa|
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    91
                                sa := eachSocketAddress copy.
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    92
                                sa port:(portNrOrName ? 0).
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    93
                                sa
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    94
                            ].
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    95
    ] ifFalse:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    96
        addressList := super allForHostName:name serviceName:portNrOrName type:socketTypeSymbol.
2172
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
    97
        self addressCacheAt:name put:(addressList deepCopy).
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
    98
    ].
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
    99
    ^ addressList
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   100
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   101
    "
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   102
     SocketAddress allForHostName:'localhost' serviceName:10 type:#stream  
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   103
     IPSocketAddress allForHostName:'localhost' serviceName:'echo' type:#datagram 
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   104
     IPSocketAddress allForHostName:'www.google.com' serviceName:80 type:nil       
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   105
    "
2172
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
   106
72f7e3be5d17 *** empty log message ***
sr
parents: 1937
diff changeset
   107
    "Modified: / 17-06-2009 / 15:21:00 / sr"
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   108
!
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   109
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   110
localHost
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   111
    "get a new instance representing the local-host address as seen internally"
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   112
3070
58c5d590c68e class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3057
diff changeset
   113
    ^ self hostAddress:self local
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   114
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   115
    "
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   116
     self localHost
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   117
     self localHost hostName
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   118
    "
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   119
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   120
    "Modified: / 04-06-2007 / 21:34:22 / cg"
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   121
!
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   122
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   123
localHostAddress
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   124
    "NO NO NEVER!!
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   125
     Do not use this, because:
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   126
     1. It does not work on hosts that get their IP address via dhcp (at least on unix/linux)
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   127
     2. Usually OperatingSystem>>#getHostName does not return a fully qualified domain name
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   128
     3. This does not work well on multi-homed hosts"
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   129
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   130
    <resource: #obsolete>
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   131
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   132
    self obsoleteMethodWarning:'Do not use this method'.
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   133
    ^ self hostName:(OperatingSystem getHostName).
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   134
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   135
    "
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   136
      self localHostAddress
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   137
    "
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   138
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   139
1883
2b2f137130ae +localHostAddress
Claus Gittinger <cg@exept.de>
parents: 1877
diff changeset
   140
    "Modified: / 04-06-2007 / 21:17:25 / cg"
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   141
! !
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   142
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   143
!IPSocketAddress class methodsFor:'addressing'!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   144
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   145
anyAddress
1281
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   146
    "return the anonymous addresses bytes"
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   147
1281
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   148
    ^ #[0 0 0 0]
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   149
!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   150
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   151
anyPort
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   152
    "return the anon port number"
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   153
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   154
    ^ 0
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   155
!
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   156
1281
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   157
broadcastAddress
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   158
    "return the broadcast address"
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   159
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   160
    ^ #[255 255 255 255]
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   161
!
6df4f8f211e3 fixed anyHost
Claus Gittinger <cg@exept.de>
parents: 1273
diff changeset
   162
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   163
firstUnreservedPort
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   164
    "return the first unreserved port number"
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   165
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   166
    ^ 1024
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   167
!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   168
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   169
local
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   170
    "return IN_ADDR_ANY, the address matching any local address"
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   171
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   172
    ^ #[127 0 0 1]
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   173
!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   174
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   175
maxPort
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   176
    "return the maximum port number"
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   177
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   178
    ^ 16rffff
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   179
!
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   180
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   181
thisHost
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   182
    <resource: #obsolete>
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   183
    "return the bytes of IN_ADDR_ANY, the address matching any local address"
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   184
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   185
    self obsoleteMethodWarning.
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   186
    ^ self anyAddress
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   187
! !
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   188
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   189
!IPSocketAddress class methodsFor:'caching'!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   190
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   191
addressCacheAt:aHostName
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   192
    |addrAndTime addressList time|
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   193
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   194
    addrCache notNil ifTrue:[
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   195
        addrAndTime := addrCache at:aHostName ifAbsent:nil.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   196
        addrAndTime notNil ifTrue:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   197
            addressList := addrAndTime key.
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   198
            time := addrAndTime value.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   199
            ((Timestamp now) secondDeltaFrom:time) > self cacheInvalidationTimeInterval ifFalse:[
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   200
                ^ addressList.
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   201
            ]
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   202
        ].
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   203
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   204
    ^ nil
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   205
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   206
    "Modified: / 26-04-2007 / 11:21:37 / cg"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   207
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   208
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   209
addressCacheAt:aName put:anAddressList
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   210
    (addrCache isNil or:[addrCache size > self addressCacheSize]) ifTrue:[
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   211
        addrCache := Dictionary new.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   212
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   213
    
1909
c76efba26558 Methods to get all addresses for a given hostname (multihomed hosts)
Stefan Vogel <sv@exept.de>
parents: 1883
diff changeset
   214
    addrCache at:aName put:(anAddressList -> Timestamp now).
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   215
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   216
    "Modified: / 26-04-2007 / 11:23:26 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   217
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   218
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   219
addressCacheSize
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   220
    ^ AddressCacheSize ? 50
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   221
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   222
    "Created: / 26-04-2007 / 11:22:40 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   223
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   224
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   225
addressCacheSize:aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   226
    AddressCacheSize := aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   227
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   228
    "Created: / 26-04-2007 / 11:24:05 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   229
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   230
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   231
cacheInvalidationTimeInterval
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   232
    ^ CacheInvalidationTimeInterval ? 30
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   233
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   234
    "Created: / 26-04-2007 / 11:21:31 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   235
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   236
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   237
cacheInvalidationTimeInterval:seconds
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   238
    CacheInvalidationTimeInterval := seconds
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   239
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   240
    "Created: / 26-04-2007 / 11:29:28 / cg"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   241
!
1261
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   242
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   243
flushAddressCache
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   244
    addrCache := nil
1261
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   245
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   246
    "
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   247
     self flushAddressCache
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   248
    "
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   249
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   250
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   251
flushNameCache
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   252
    nameCache := Dictionary new.
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   253
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   254
    "
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   255
     self flushNameCache
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   256
    "
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   257
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   258
    "Modified: / 26-04-2007 / 11:25:32 / cg"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   259
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   260
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   261
nameCacheAt:aHostAddress
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   262
    |nameAndTime name time|
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   263
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   264
    nameCache notNil ifTrue:[
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   265
        nameAndTime := nameCache at:aHostAddress ifAbsent:nil.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   266
        nameAndTime notNil ifTrue:[
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   267
            name := nameAndTime key.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   268
            time := nameAndTime value.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   269
            ((Timestamp now) secondDeltaFrom:time) > self cacheInvalidationTimeInterval ifFalse:[
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   270
                ^ name.
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   271
            ]
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   272
        ].
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   273
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   274
    ^ nil
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   275
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   276
    "Modified: / 26-04-2007 / 11:25:11 / cg"
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   277
!
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   278
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   279
nameCacheAt:aHostAddress put:aName
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   280
    (nameCache isNil or:[nameCache size > self nameCacheSize]) ifTrue:[
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   281
        nameCache := Dictionary new.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   282
    ].
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   283
    
1877
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   284
    nameCache at:aHostAddress put:(aName -> Timestamp now).
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   285
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   286
    "Modified: / 26-04-2007 / 11:23:35 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   287
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   288
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   289
nameCacheSize
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   290
    ^ NameCacheSize ? 50
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   291
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   292
    "Created: / 26-04-2007 / 11:22:44 / cg"
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   293
!
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   294
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   295
nameCacheSize:aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   296
    NameCacheSize := aNumber
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   297
d143433fd007 cache: decay after some time to allow for dhcp-changing addresses
Claus Gittinger <cg@exept.de>
parents: 1585
diff changeset
   298
    "Created: / 26-04-2007 / 11:23:49 / cg"
1261
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   299
! !
ce4c9f258766 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1259
diff changeset
   300
1559
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   301
!IPSocketAddress class methodsFor:'conversion'!
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   302
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   303
hostAddressFromString:aString
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   304
    "convert an address given in a dot notation like 123.456.78.9"
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   305
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   306
    |components bytes|
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   307
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   308
    components := aString asCollectionOfSubstringsSeparatedBy:$..
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   309
    components size ~~ 4 ifTrue:[
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   310
        ^ NameLookupError raiseRequestWith:aString errorString:' - bad address string'.
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   311
    ].
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   312
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   313
    bytes := components collect:[:eachComponent| 
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   314
        Integer readFromString:eachComponent onError:[^ NameLookupError raiseRequestWith:aString errorString:' - bad address string'].
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   315
    ].
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   316
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   317
    ^ bytes asByteArray.
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   318
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   319
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   320
    "
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   321
        IPSocketAddress hostAddressFromString:'1.2.3.4'
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   322
        IPSocketAddress hostAddressFromString:'255.255.255.255'
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   323
    "
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   324
! !
609a0707ab22 New: #addressString: to create an instance from a numeric string representation like
Stefan Vogel <sv@exept.de>
parents: 1452
diff changeset
   325
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   326
!IPSocketAddress class methodsFor:'queries'!
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   327
3052
e690209a5c52 changes #domainSymbol to #domain fpr comaptibility with Socket
Stefan Vogel <sv@exept.de>
parents: 3049
diff changeset
   328
domain
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   329
    ^ #'AF_INET'
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   330
!
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   331
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   332
hostAddressLen
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   333
    "answer the number of bytes of the host address"
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   334
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   335
    ^ 4
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   336
!
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   337
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   338
obsoleteDomainSymbol
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   339
    ^ #inet
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   340
!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   341
1226
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   342
vwDomainSymbol
0114bd044aa9 vw compatible domainSymbols (afXXX)
Claus Gittinger <cg@exept.de>
parents: 1164
diff changeset
   343
    ^ #afInet
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   344
! !
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   345
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   346
!IPSocketAddress methodsFor:'accessing'!
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   347
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   348
hostAddress
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   349
    ^ (ByteArray new:4) replaceFrom:1 to:4 with:self startingAt:5
816
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   350
!
489e7876ab3e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 799
diff changeset
   351
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   352
hostAddress:aByteArray
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   353
    ^ self replaceFrom:5 to:8 with:aByteArray startingAt:1
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   354
!
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   355
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   356
port
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   357
    ^ self unsignedShortAt:3 bigEndian:true
818
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   358
!
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   359
2f8331ad12d4 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 816
diff changeset
   360
port:aPortNr
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   361
    self unsignedShortAt:3 put:aPortNr bigEndian:true
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   362
! !
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   363
3057
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   364
!IPSocketAddress methodsFor:'converting'!
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   365
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   366
asIPv4SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   367
    ^ self
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   368
!
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   369
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   370
asIPv6SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   371
    "convert a IPv4 address to a mapped IPv6SocketAddress"
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   372
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   373
    |ipv6|
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   374
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   375
    ipv6 := IPv6SocketAddress new.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   376
    ipv6
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   377
        port:self port;
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   378
        at:19 put:16rff;
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   379
        at:20 put:16rff.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   380
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   381
    ipv6 replaceFrom:21 to:24 with:self startingAt:5.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   382
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   383
    ^ ipv6.
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   384
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   385
    "
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   386
        (self localHost port:80) asIPv6SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   387
        (self localHost port:80) asIPv6SocketAddress asIPv4SocketAddress
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   388
    "
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   389
! !
ac2356ba61ca IPv6/IPv4 conversion
Stefan Vogel <sv@exept.de>
parents: 3052
diff changeset
   390
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   391
!IPSocketAddress methodsFor:'obsolete'!
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   392
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   393
address
1452
4456e3f3ddb4 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 1366
diff changeset
   394
    <resource: #obsolete>
4456e3f3ddb4 Mark obsolete methods
Stefan Vogel <sv@exept.de>
parents: 1366
diff changeset
   395
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   396
    ^ self hostAddress
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   397
! !
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   398
770
32ad77c9ed74 added #printOn:
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
   399
!IPSocketAddress methodsFor:'printing & storing'!
32ad77c9ed74 added #printOn:
Claus Gittinger <cg@exept.de>
parents: 514
diff changeset
   400
1333
d9ebcc42524c printing refactored
penk
parents: 1281
diff changeset
   401
printAddressOn:aStream
d9ebcc42524c printing refactored
penk
parents: 1281
diff changeset
   402
    |i1 i2|
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   403
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   404
    i1 := self adrBytesStart.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   405
    i2 := i1 + self numAdrBytes - 1.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   406
    i1 to:i2 do:[:i | 
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   407
        i ~~ i1 ifTrue:[
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   408
            aStream nextPut:$.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   409
        ].
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   410
        (self at:i) printOn:aStream
1164
41a2750af1fa New socket support
Stefan Vogel <sv@exept.de>
parents: 1026
diff changeset
   411
    ].
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   412
! !
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   413
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   414
!IPSocketAddress methodsFor:'private'!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   415
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   416
adrBytesStart
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   417
    ^ 5
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   418
!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   419
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   420
numAdrBytes
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   421
    ^ 4
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   422
! !
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   423
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   424
!IPSocketAddress methodsFor:'queries'!
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   425
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   426
hostName
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   427
    |addr name|
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   428
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   429
    addr := self hostAddress.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   430
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   431
    name := self class nameCacheAt:addr.
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   432
    name notNil ifTrue:[^ name].
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   433
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   434
    name := super hostName.
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   435
    name notNil ifTrue:[
1273
03afdf3f895e addrCache and nameCache must be separate for
Claus Gittinger <cg@exept.de>
parents: 1262
diff changeset
   436
        self class nameCacheAt:addr put:name.
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   437
    ].
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   438
    ^ name
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   439
!
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   440
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   441
netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   442
    "If this is an address mask: answer the number of mask bits in the address mask"
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   443
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   444
    |sz bI lowBit lowBitHere hostAddress|
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   445
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   446
    hostAddress := self hostAddress.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   447
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   448
    lowBit := 0.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   449
    bI := 1.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   450
    sz := hostAddress size.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   451
    [
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   452
        lowBitHere := (hostAddress basicAt:bI) lowBit.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   453
        lowBitHere ~= 0 ifTrue:[
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   454
            lowBit := lowBit + (9 - lowBitHere).
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   455
        ].
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   456
        bI := bI + 1.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   457
    ] doWhile:[lowBitHere == 1 and:[bI < sz]].
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   458
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   459
    ^ lowBit
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   460
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   461
    "
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   462
      (IPSocketAddress addressString:'255.255.0.0') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   463
      (IPSocketAddress addressString:'255.255.128.0') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   464
      (IPv6SocketAddress addressString:'FFFF:FFFF:FFFF:FFFF::') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   465
      (IPv6SocketAddress addressString:'FFFF:FFFF:FFFF:FFF0::') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   466
      (IPv6SocketAddress addressString:'F0FF:FFFF:FFFF:FFF0::') netmaskSize
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   467
    "
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   468
!
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   469
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   470
networkAddress
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   471
    "THINK TWICE before using this!! 
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   472
     This is deprecated, it doesn't make sense any longer since subnetting and netmasks
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   473
     have been introduced.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   474
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   475
     Extract and return the network part from the host address."
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   476
    <resource: #obsolete>
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   477
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   478
    |highAddrByte|
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   479
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   480
    highAddrByte := self at: 5.
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   481
    (highAddrByte bitAnd: 16r80) == 0 ifTrue: [^ByteArray with: highAddrByte].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   482
    (highAddrByte bitAnd: 16rC0) == 16r80 ifTrue: [^ByteArray with: highAddrByte with: (self at: 6)].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   483
    (highAddrByte bitAnd: 16rC0) == 16rC0 ifTrue: [^ByteArray with: highAddrByte with: (self at: 6) with: (self at: 7)].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   484
    ^ self error: 'unknown network class'
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   485
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   486
    "
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   487
     (IPSocketAddress hostName:'exept.eu.org') networkAddress     
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   488
     (IPSocketAddress hostName:'exept.exept.de') networkAddress    
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   489
     (IPSocketAddress hostName:'ibm.com') networkAddress          
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   490
     (IPSocketAddress hostName:'cnn.com') networkAddress          
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   491
    "
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   492
!
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   493
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   494
networkClass
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   495
    "THINK TWICE before using this!! 
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   496
     This is deprecated, it doesn't make sense any longer since subnetting and netmasks
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   497
     have been introduced.
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   498
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   499
     Extract and return the network class (as a symbol) from the host address.
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   500
     Returns one of #classA #classB #classC."
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   501
    <resource: #obsolete>
1337
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   502
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   503
    |highAddrByte|
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   504
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   505
    highAddrByte := self at: 5.
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   506
    (highAddrByte bitAnd: 16r80) == 0 ifTrue: [^#classA].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   507
    (highAddrByte bitAnd: 16rC0) == 16r80 ifTrue: [^#classB].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   508
    (highAddrByte bitAnd: 16rC0) == 16rC0 ifTrue: [^#classC].
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   509
    ^ self error: 'unknown network class'
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   510
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   511
    "
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   512
     (IPSocketAddress hostName:'exept.eu.org') networkClass
a6372d6797c7 network queries
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
   513
    "
1937
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   514
!
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   515
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   516
portOrName
09fb98759b4a Clean up:
Stefan Vogel <sv@exept.de>
parents: 1909
diff changeset
   517
    ^ self port
1233
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   518
! !
999feaf57b80 cache host translations
Claus Gittinger <cg@exept.de>
parents: 1228
diff changeset
   519
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   520
!IPSocketAddress methodsFor:'testing'!
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   521
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   522
isBroadcast
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   523
    "answer true, if this is a broadcast address"
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   524
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   525
    ^ (self at:5) == 255
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   526
        and:[self sameContentsFrom:6 to:8 as:#[255 255 255] startingAt:1]
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   527
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   528
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   529
        (self hostAddress:self broadcastAddress) isBroadcast
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   530
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   531
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   532
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   533
isIPSocketAddress
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   534
    ^ true
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   535
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   536
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   537
isIPv4SocketAddress
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   538
    ^ self class == IPSocketAddress
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   539
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   540
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   541
isLocal
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   542
    "answer true, if this address adresses a peer on the same host"
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   543
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   544
    ^ (self at:5) == 127
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   545
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   546
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   547
        self localHost isLocal
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   548
    "
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   549
!
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   550
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   551
isMulticast
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   552
    "answer true, if this address is a multicast address 224.0.0.0/4 or Class D"
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   553
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   554
    ^ (self at:5) between:224 and:239  
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   555
!
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   556
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   557
isMyAddress
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   558
    "answer true, if the address refers to my own host"
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   559
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   560
    self isLocal ifTrue:[^ true].
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   561
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   562
    "/ For now - work only for ipv4...
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   563
    ^ OperatingSystem getNetworkAddresses contains:[:each| 
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   564
            self sameHostAddress:each
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   565
        ].
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   566
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   567
    "/ later, when getNetworkAddressInfo is implemented in Win32OperatingSystem
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   568
"/    OperatingSystem getNetworkAddressInfo do:[:eachIfAddrInfoSet|
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   569
"/        eachIfAddrInfoSet do:[:eachIfAddrInfo|
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   570
"/            |address|
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   571
"/            address := eachIfAddrInfo at:#address ifAbsent:nil.
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   572
"/            address notNil ifTrue:[
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   573
"/                (self sameHostAddress:address) ifTrue:[^ true].
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   574
"/            ]
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   575
"/        ].
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   576
"/    ].
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   577
"/    ^ false
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   578
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   579
    "
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   580
        (IPSocketAddress hostAddress:#[193 141 12 193] port:80) isMyAddress.
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   581
        (IPSocketAddress hostAddress:#[172 23 1 88] port:80) isMyAddress.
3049
3f7eeb76695e More address type testing
Stefan Vogel <sv@exept.de>
parents: 3044
diff changeset
   582
        (IPSocketAddress hostAddress:#[192 168 23 29] port:80) isMyAddress.
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   583
    "
1366
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   584
! !
e01d0f6c102a New method #isLocal returning true for local addresses
Stefan Vogel <sv@exept.de>
parents: 1337
diff changeset
   585
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   586
!IPSocketAddress class methodsFor:'documentation'!
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   587
488
b0c17a5ff8ea checkin from browser
Claus Gittinger <cg@exept.de>
parents: 113
diff changeset
   588
version
3070
58c5d590c68e class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3057
diff changeset
   589
    ^ '$Header: /cvs/stx/stx/libbasic2/IPSocketAddress.st,v 1.40 2013-08-07 16:06:08 cg Exp $'
2567
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   590
!
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   591
Stefan Vogel <sv@exept.de>
parents: 2172
diff changeset
   592
version_CVS
3070
58c5d590c68e class: IPSocketAddress
Claus Gittinger <cg@exept.de>
parents: 3057
diff changeset
   593
    ^ '$Header: /cvs/stx/stx/libbasic2/IPSocketAddress.st,v 1.40 2013-08-07 16:06:08 cg Exp $'
100
058d9257c30d *** empty log message ***
Claus Gittinger <cg@exept.de>
parents:
diff changeset
   594
! !
3044
14e5f27a8a78 My own address checking
Stefan Vogel <sv@exept.de>
parents: 2567
diff changeset
   595