Os.java revision 0a9d1ee45a9884a9616624d747172e18734e8fe0
1/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 *      http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package libcore.io;
18
19import java.io.FileDescriptor;
20import java.net.InetAddress;
21import java.net.SocketAddress;
22import java.nio.ByteBuffer;
23import libcore.util.MutableInt;
24import libcore.util.MutableLong;
25
26public interface Os {
27    public boolean access(String path, int mode) throws ErrnoException;
28    public void chmod(String path, int mode) throws ErrnoException;
29    public void close(FileDescriptor fd) throws ErrnoException;
30    public String[] environ();
31    public int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException;
32    public int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException;
33    public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
34    public void fdatasync(FileDescriptor fd) throws ErrnoException;
35    public StructStat fstat(FileDescriptor fd) throws ErrnoException;
36    public StructStatFs fstatfs(FileDescriptor fd) throws ErrnoException;
37    public void fsync(FileDescriptor fd) throws ErrnoException;
38    public void ftruncate(FileDescriptor fd, long length) throws ErrnoException;
39    public String getenv(String name);
40    public SocketAddress getsockname(FileDescriptor fd) throws ErrnoException;
41    public int getsockoptByte(FileDescriptor fd, int level, int option) throws ErrnoException;
42    public InetAddress getsockoptInAddr(FileDescriptor fd, int level, int option) throws ErrnoException;
43    public int getsockoptInt(FileDescriptor fd, int level, int option) throws ErrnoException;
44    public StructLinger getsockoptLinger(FileDescriptor fd, int level, int option) throws ErrnoException;
45    public StructTimeval getsockoptTimeval(FileDescriptor fd, int level, int option) throws ErrnoException;
46    public int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException;
47    public boolean isatty(FileDescriptor fd);
48    public void listen(FileDescriptor fd, int backlog) throws ErrnoException;
49    public long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException;
50    public void mincore(long address, long byteCount, byte[] vector) throws ErrnoException;
51    public void mkdir(String path, int mode) throws ErrnoException;
52    public void mlock(long address, long byteCount) throws ErrnoException;
53    public long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException;
54    public void msync(long address, long byteCount, int flags) throws ErrnoException;
55    public void munlock(long address, long byteCount) throws ErrnoException;
56    public void munmap(long address, long byteCount) throws ErrnoException;
57    public FileDescriptor open(String path, int flags, int mode) throws ErrnoException;
58    public FileDescriptor[] pipe() throws ErrnoException;
59    public StructStat lstat(String path) throws ErrnoException;
60    public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException;
61    public int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException;
62    public int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
63    public void remove(String path) throws ErrnoException;
64    public void rename(String oldPath, String newPath) throws ErrnoException;
65    public long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException;
66    public void setsockoptInt(FileDescriptor fd, int level, int option, int value) throws ErrnoException;
67    public void shutdown(FileDescriptor fd, int how) throws ErrnoException;
68    public FileDescriptor socket(int domain, int type, int protocol) throws ErrnoException;
69    public StructStat stat(String path) throws ErrnoException;
70    /* TODO: replace statfs with statvfs. */
71    public StructStatFs statfs(String path) throws ErrnoException;
72    public String strerror(int errno);
73    public void symlink(String oldPath, String newPath) throws ErrnoException;
74    public long sysconf(int name);
75    public StructUtsname uname() throws ErrnoException;
76    public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException;
77    public int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException;
78    public int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
79}
80