Subversion Repository Public Repository

litesoft

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// This Source Code is in the Public Domain per: http://litesoft.org/License.txt
package org.litesoft.core.util;

import org.litesoft.core.simpletypes.nonpublic.*;
import org.litesoft.core.typeutils.*;

/**
 * Email address as specified by <a href="http://www.ietf.org/rfc/rfc2822.txt">RFC 2822, "Internet Message Format"</a>
 * constrained to "global" addresses (must be a Secondary Level Domain, AND the Top Level Domain must be only letters).
 * <p/>
 * In addition only the "dot-atom" forms (with out the [CFWS]) of the "local-part" and "domain" are supported!
 */
public class EmailAddress extends CompareSupport<EmailAddress>
{
    private final String mLocalPart, mDomain;

    public EmailAddress( String pLocalPart, String pDomain )
            throws IllegalArgumentException
    {
        mLocalPart = Strings.deNull( pLocalPart ).trim();
        mDomain = Strings.deNull( pDomain ).trim().toLowerCase();
        validate();
    }

    public EmailAddress( String pAddress )
            throws IllegalArgumentException
    {
        int zAt = (pAddress = Strings.deNull( pAddress )).indexOf( '@' );
        if ( zAt == -1 )
        {
            throw new IllegalArgumentException( "No Local-part / Domain separator ('@')" );
        }
        mLocalPart = pAddress.substring( 0, zAt ).trim();
        mDomain = pAddress.substring( zAt + 1 ).trim().toLowerCase();
        validate();
    }

    public String getLocalPart()
    {
        return mLocalPart;
    }

    public String getDomain()
    {
        return mDomain;
    }

    @Override public boolean equals( Object o )
    {
        return (this == o) || //
               ((o instanceof EmailAddress) && equals( (EmailAddress) o ));
    }

    public boolean equals( EmailAddress them )
    {
        return (this == them) || //
               ((them != null) //
                && equal( this.mLocalPart, them.mLocalPart ) //
                && equal( this.mDomain, them.mDomain ) //
               );
    }

    @Override public int hashCode()
    {
        return hashCodeEm( mLocalPart.hashCode(), mDomain.hashCode() );
    }

    @Override
    public int compareTo( EmailAddress them )
    {
        return compareEm( compare( this.mLocalPart, them.mLocalPart ), //
                          compare( this.mDomain, them.mDomain ) );
    }

    @Override
    public String toString()
    {
        return mLocalPart + "@" + mDomain;
    }

    private void validate()
            throws IllegalArgumentException
    {
        validateDomain();
        validateDotAtomText( "Local-part", mLocalPart );
    }

    private void validateDomain()
            throws IllegalArgumentException
    {
        validateDotAtomText( "Domain", mDomain );
        int zAt = mDomain.lastIndexOf( '.' );
        if ( zAt == -1 )
        {
            throw new IllegalArgumentException( "TLD only Domain" );
        }
        if ( !Strings.isAll7BitAsciiAlpha( mDomain.substring( zAt + 1 ), 1 ) )
        {
            throw new IllegalArgumentException( "Domain TLD not all Ascii Alpha" );
        }
    }

    private void validateDotAtomText( String pWhat, String pText )
    {
        if ( pText.length() == 0 )
        {
            throw new IllegalArgumentException( "No " + pWhat );
        }
        if ( !isDotAtomText( pText ) )
        {
            throw new IllegalArgumentException( pWhat + " format" );
        }
    }

    private boolean isDotAtomText( String pText )
    {
        int zFrom = 0;
        for ( int zTo; -1 != (zTo = pText.indexOf( '.', zFrom )); zFrom = zTo + 1 )
        {
            if ( !isAText( pText.substring( zFrom, zTo ) ) )
            {
                return false;
            }
        }
        return isAText( pText.substring( zFrom ) );
    }

    private boolean isAText( String pText )
    {
        if ( pText.length() == 0 )
        {
            return false;
        }
        for ( int i = 0; i < pText.length(); i++ )
        {
            if ( !isAText( pText.charAt( i ) ) )
            {
                return false;
            }
        }
        return true;
    }

    private boolean isAText( char c )
    {
        return !isCtrl( c ) && (c != ' ') && !isSpecials( c );
    }

    private boolean isCtrl( char c )
    {
        return (c < ' ') || (c == 127);
    }

    private boolean isSpecials( char c )
    {
        return "()<>[]:;,.@\\\"".indexOf( c ) != -1;
    }
}

Commits for litesoft/trunk/Java/core/Anywhere/src/org/litesoft/core/util/EmailAddress.java

Diff revisions: vs.
Revision Author Commited Message
821 Diff Diff GeorgeS picture GeorgeS Sun 19 Aug, 2012 00:08:41 +0000
802 Diff Diff GeorgeS picture GeorgeS Wed 15 Aug, 2012 04:04:47 +0000
50 Diff Diff GeorgeS picture GeorgeS Tue 13 Apr, 2010 11:51:38 +0000
49 Diff Diff GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text

2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000