author | rriggs |
Fri, 01 Dec 2017 16:40:08 -0500 | |
changeset 48224 | be0df5ab3093 |
parent 47216 | 71c04702a3d5 |
child 54246 | f04e3492fd88 |
child 57114 | e613cc3bc9d4 |
permissions | -rw-r--r-- |
2 | 1 |
/* |
23010
6dadb192ad81
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents:
15136
diff
changeset
|
2 |
* Copyright (c) 2002, 2013, Oracle and/or its affiliates. All rights reserved. |
2 | 3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
4 |
* |
|
5 |
* This code is free software; you can redistribute it and/or modify it |
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
|
5506 | 7 |
* published by the Free Software Foundation. Oracle designates this |
2 | 8 |
* particular file as subject to the "Classpath" exception as provided |
5506 | 9 |
* by Oracle in the LICENSE file that accompanied this code. |
2 | 10 |
* |
11 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
|
12 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
13 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
14 |
* version 2 for more details (a copy is included in the LICENSE file that |
|
15 |
* accompanied this code). |
|
16 |
* |
|
17 |
* You should have received a copy of the GNU General Public License version |
|
18 |
* 2 along with this work; if not, write to the Free Software Foundation, |
|
19 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
20 |
* |
|
5506 | 21 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
22 |
* or visit www.oracle.com if you need additional information or have any |
|
23 |
* questions. |
|
2 | 24 |
*/ |
25 |
||
26 |
package sun.nio.ch; |
|
27 |
||
15136
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
28 |
import java.lang.annotation.Native; |
2 | 29 |
|
30 |
// Constants for reporting I/O status |
|
31 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
5506
diff
changeset
|
32 |
public final class IOStatus { |
2 | 33 |
|
34 |
private IOStatus() { } |
|
35 |
||
15136
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
36 |
@Native public static final int EOF = -1; // End of file |
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
37 |
@Native public static final int UNAVAILABLE = -2; // Nothing available (non-blocking) |
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
38 |
@Native public static final int INTERRUPTED = -3; // System call interrupted |
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
39 |
@Native public static final int UNSUPPORTED = -4; // Operation not supported |
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
40 |
@Native public static final int THROWN = -5; // Exception thrown in JNI code |
c17824042364
8005856: build-infra: Remove special handling of base module classes header generation
erikj
parents:
14342
diff
changeset
|
41 |
@Native public static final int UNSUPPORTED_CASE = -6; // This case not supported |
2 | 42 |
|
43 |
// The following two methods are for use in try/finally blocks where a |
|
44 |
// status value needs to be normalized before being returned to the invoker |
|
45 |
// but also checked for illegal negative values before the return |
|
46 |
// completes, like so: |
|
47 |
// |
|
48 |
// int n = 0; |
|
49 |
// try { |
|
50 |
// begin(); |
|
51 |
// n = op(fd, buf, ...); |
|
52 |
// return IOStatus.normalize(n); // Converts UNAVAILABLE to zero |
|
53 |
// } finally { |
|
54 |
// end(n > 0); |
|
55 |
// assert IOStatus.check(n); // Checks other negative values |
|
56 |
// } |
|
57 |
// |
|
58 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
5506
diff
changeset
|
59 |
public static int normalize(int n) { |
2 | 60 |
if (n == UNAVAILABLE) |
61 |
return 0; |
|
62 |
return n; |
|
63 |
} |
|
64 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
5506
diff
changeset
|
65 |
public static boolean check(int n) { |
2 | 66 |
return (n >= UNAVAILABLE); |
67 |
} |
|
68 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
5506
diff
changeset
|
69 |
public static long normalize(long n) { |
2 | 70 |
if (n == UNAVAILABLE) |
71 |
return 0; |
|
72 |
return n; |
|
73 |
} |
|
74 |
||
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
5506
diff
changeset
|
75 |
public static boolean check(long n) { |
2 | 76 |
return (n >= UNAVAILABLE); |
77 |
} |
|
78 |
||
79 |
// Return true iff n is not one of the IOStatus values |
|
11823
ee83ae88512d
7041778: Move SCTP implementation out of sun.nio.ch and into its own package
chegar
parents:
5506
diff
changeset
|
80 |
public static boolean checkAll(long n) { |
2 | 81 |
return ((n > EOF) || (n < UNSUPPORTED_CASE)); |
82 |
} |
|
83 |
||
84 |
} |