Posix.java revision 8b15dcc5890963edad4dfcf558cc16027c7985e5
1ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes/*
2ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * Copyright (C) 2011 The Android Open Source Project
3ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *
4ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
5ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * you may not use this file except in compliance with the License.
6ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * You may obtain a copy of the License at
7ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *
8ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
9ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes *
10ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * Unless required by applicable law or agreed to in writing, software
11ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
12ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * See the License for the specific language governing permissions and
14ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes * limitations under the License.
15ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes */
16ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes
17ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughespackage libcore.io;
18ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes
1952724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughesimport java.io.FileDescriptor;
2026c7025a7a919044771fb89031161bd26fe03032Elliott Hughesimport java.nio.ByteBuffer;
214af0d8c99d68bcacff182699527d983a1d34fdbeElliott Hughesimport java.nio.NioUtils;
228b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughesimport libcore.util.MutableInt;
238b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughesimport libcore.util.MutableLong;
2452724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughes
25ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughespublic final class Posix implements Os {
26ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes    Posix() { }
27ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes
28ddfdbb9d172fe9b72e08e8d7deab0aa3b8acf044Elliott Hughes    public native boolean access(String path, int mode) throws ErrnoException;
29b7190190e0ef8de883c952efb319ce7748831faaElliott Hughes    public native void chmod(String path, int mode) throws ErrnoException;
30ddfdbb9d172fe9b72e08e8d7deab0aa3b8acf044Elliott Hughes    public native String[] environ();
31fc549a0b0388987b26dea524894d75a63d14783bElliott Hughes    public native int fcntlVoid(FileDescriptor fd, int cmd) throws ErrnoException;
32fc549a0b0388987b26dea524894d75a63d14783bElliott Hughes    public native int fcntlLong(FileDescriptor fd, int cmd, long arg) throws ErrnoException;
33fc549a0b0388987b26dea524894d75a63d14783bElliott Hughes    public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
3452724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughes    public native void fdatasync(FileDescriptor fd) throws ErrnoException;
3547cb338d43f75dd998b29caaaa9446c5705217d1Elliott Hughes    public native StructStat fstat(FileDescriptor fd) throws ErrnoException;
3659fa7163774d6930a174bc038414a4b780581957Elliott Hughes    public native StructStatFs fstatfs(FileDescriptor fd) throws ErrnoException;
3752724d3ebd4ccaaa4b9f5576e329d4272cde8ea9Elliott Hughes    public native void fsync(FileDescriptor fd) throws ErrnoException;
38f5333fd2094bdac4d6506177b1964b79afa64d77Elliott Hughes    public native void ftruncate(FileDescriptor fd, long length) throws ErrnoException;
39ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes    public native String getenv(String name);
408b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes    public native int ioctlInt(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException;
419a3f363523000704205df288f8b6f2f48c0d8563Elliott Hughes    public native boolean isatty(FileDescriptor fd);
42e1502d64e937001636fca3d62b2552ef2a34d05fElliott Hughes    public native void listen(FileDescriptor fd, int backlog) throws ErrnoException;
43dedaccdfa07c370a58cba08b096133ad9eec0ec3Elliott Hughes    public native long lseek(FileDescriptor fd, long offset, int whence) throws ErrnoException;
440f746ff511162add42eeabaf14ba70ace874c6f4Elliott Hughes    public native void mincore(long address, long byteCount, byte[] vector) throws ErrnoException;
45c7fa20701d5e9398c38f4615ed293acfce1c0cf6Elliott Hughes    public native void mkdir(String path, int mode) throws ErrnoException;
467e13c0f05ac9e7c55682d10e953dd4cbd5e6107cElliott Hughes    public native void mlock(long address, long byteCount) throws ErrnoException;
477e25eff38a191d9c19e45093f4fde5102fb09d78Elliott Hughes    public native long mmap(long address, long byteCount, int prot, int flags, FileDescriptor fd, long offset) throws ErrnoException;
487e25eff38a191d9c19e45093f4fde5102fb09d78Elliott Hughes    public native void msync(long address, long byteCount, int flags) throws ErrnoException;
497e13c0f05ac9e7c55682d10e953dd4cbd5e6107cElliott Hughes    public native void munlock(long address, long byteCount) throws ErrnoException;
507e25eff38a191d9c19e45093f4fde5102fb09d78Elliott Hughes    public native void munmap(long address, long byteCount) throws ErrnoException;
510ac77ac8e915bff1a863e371f9b363033f9cf759Elliott Hughes    public native FileDescriptor open(String path, int flags, int mode) throws ErrnoException;
5241f0605d2c809bd9bc1c0fb68d86b49a0f59b6c5Elliott Hughes    public native FileDescriptor[] pipe() throws ErrnoException;
5347cb338d43f75dd998b29caaaa9446c5705217d1Elliott Hughes    public native StructStat lstat(String path) throws ErrnoException;
5426c7025a7a919044771fb89031161bd26fe03032Elliott Hughes    public int read(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException {
5526c7025a7a919044771fb89031161bd26fe03032Elliott Hughes        if (buffer.isDirect()) {
5626c7025a7a919044771fb89031161bd26fe03032Elliott Hughes            return readDirectBuffer(fd, buffer, buffer.position(), buffer.remaining());
5726c7025a7a919044771fb89031161bd26fe03032Elliott Hughes        }
584af0d8c99d68bcacff182699527d983a1d34fdbeElliott Hughes        return read(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + buffer.position(), buffer.remaining());
5926c7025a7a919044771fb89031161bd26fe03032Elliott Hughes    }
6026c7025a7a919044771fb89031161bd26fe03032Elliott Hughes    private native int readDirectBuffer(FileDescriptor fd, ByteBuffer buffer, int position, int remaining) throws ErrnoException;
6126c7025a7a919044771fb89031161bd26fe03032Elliott Hughes    public native int read(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException;
62bbac92e691de7d570928ddfba639067978e55b06Elliott Hughes    public native int readv(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
63c7fa20701d5e9398c38f4615ed293acfce1c0cf6Elliott Hughes    public native void remove(String path) throws ErrnoException;
64a20cc6fca30d18e05db67ceeb0403b7b58ffd364Elliott Hughes    public native void rename(String oldPath, String newPath) throws ErrnoException;
658b15dcc5890963edad4dfcf558cc16027c7985e5Elliott Hughes    public native long sendfile(FileDescriptor outFd, FileDescriptor inFd, MutableLong inOffset, long byteCount) throws ErrnoException;
6659e4744d27231f260271dbbca406e0cc39768116Elliott Hughes    public native void shutdown(FileDescriptor fd, int how) throws ErrnoException;
6747cb338d43f75dd998b29caaaa9446c5705217d1Elliott Hughes    public native StructStat stat(String path) throws ErrnoException;
6859fa7163774d6930a174bc038414a4b780581957Elliott Hughes    public native StructStatFs statfs(String path) throws ErrnoException;
69ddfdbb9d172fe9b72e08e8d7deab0aa3b8acf044Elliott Hughes    public native String strerror(int errno);
70a20cc6fca30d18e05db67ceeb0403b7b58ffd364Elliott Hughes    public native void symlink(String oldPath, String newPath) throws ErrnoException;
716fc1a0e1e68dc2e0d12341548e58fa7f1c5dafc4Elliott Hughes    public native long sysconf(int name);
727341b9ed7157a1e37a3e69a0974676da358b735aElliott Hughes    public native StructUtsname uname() throws ErrnoException;
7378c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes    public int write(FileDescriptor fd, ByteBuffer buffer) throws ErrnoException {
7478c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes        if (buffer.isDirect()) {
7578c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes            return writeDirectBuffer(fd, buffer, buffer.position(), buffer.remaining());
7678c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes        }
774af0d8c99d68bcacff182699527d983a1d34fdbeElliott Hughes        return write(fd, NioUtils.unsafeArray(buffer), NioUtils.unsafeArrayOffset(buffer) + buffer.position(), buffer.remaining());
7878c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes    }
7978c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes    private native int writeDirectBuffer(FileDescriptor fd, ByteBuffer buffer, int position, int remaining) throws ErrnoException;
8078c7cc547101002b9f9043cf3845970719d1bda8Elliott Hughes    public native int write(FileDescriptor fd, byte[] bytes, int byteOffset, int byteCount) throws ErrnoException;
81bbac92e691de7d570928ddfba639067978e55b06Elliott Hughes    public native int writev(FileDescriptor fd, Object[] buffers, int[] offsets, int[] byteCounts) throws ErrnoException;
82ec617e2cb4a374f0fd8fbda4a633214cf23a59a9Elliott Hughes}
83