1 /*
2  * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
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
7  * published by the Free Software Foundation.
8  *
9  * This code is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12  * version 2 for more details (a copy is included in the LICENSE file that
13  * accompanied this code).
14  *
15  * You should have received a copy of the GNU General Public License version
16  * 2 along with this work; if not, write to the Free Software Foundation,
17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18  *
19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20  * or visit www.oracle.com if you need additional information or have any
21  * questions.
22  */
23 package jdk.internal.org.jline.terminal.impl.jna.win;
24 
25 import jdk.internal.org.jline.terminal.impl.jna.win.Kernel32.CHAR_INFO;
26 import jdk.internal.org.jline.terminal.impl.jna.win.Kernel32.CONSOLE_SCREEN_BUFFER_INFO;
27 import jdk.internal.org.jline.terminal.impl.jna.win.Kernel32.COORD;
28 import jdk.internal.org.jline.terminal.impl.jna.win.Kernel32.INPUT_RECORD;
29 import jdk.internal.org.jline.terminal.impl.jna.win.Kernel32.SMALL_RECT;
30 
31 public class Kernel32Impl implements Kernel32 {
32 
33     static {
34         System.loadLibrary("le");
initIDs()35         initIDs();
36     }
37 
initIDs()38     private static native void initIDs();
39 
40     @Override
WaitForSingleObject(Pointer in_hHandle, int in_dwMilliseconds)41     public native int WaitForSingleObject(Pointer in_hHandle, int in_dwMilliseconds);
42 
43     @Override
GetStdHandle(int nStdHandle)44     public native Pointer GetStdHandle(int nStdHandle);
45 
46     @Override
GetConsoleOutputCP()47     public native int GetConsoleOutputCP();
48 
49     @Override
FillConsoleOutputCharacter(Pointer in_hConsoleOutput, char in_cCharacter, int in_nLength, COORD in_dwWriteCoord, IntByReference out_lpNumberOfCharsWritten)50     public native void FillConsoleOutputCharacter(Pointer in_hConsoleOutput, char in_cCharacter, int in_nLength, COORD in_dwWriteCoord, IntByReference out_lpNumberOfCharsWritten) throws LastErrorException;
51 
52     @Override
FillConsoleOutputAttribute(Pointer in_hConsoleOutput, short in_wAttribute, int in_nLength, COORD in_dwWriteCoord, IntByReference out_lpNumberOfAttrsWritten)53     public native void FillConsoleOutputAttribute(Pointer in_hConsoleOutput, short in_wAttribute, int in_nLength, COORD in_dwWriteCoord, IntByReference out_lpNumberOfAttrsWritten) throws LastErrorException;
54 
55     @Override
GetConsoleMode(Pointer in_hConsoleOutput, IntByReference out_lpMode)56     public native void GetConsoleMode(Pointer in_hConsoleOutput, IntByReference out_lpMode) throws LastErrorException;
57 
58     @Override
GetConsoleScreenBufferInfo(Pointer in_hConsoleOutput, CONSOLE_SCREEN_BUFFER_INFO out_lpConsoleScreenBufferInfo)59     public native void GetConsoleScreenBufferInfo(Pointer in_hConsoleOutput, CONSOLE_SCREEN_BUFFER_INFO out_lpConsoleScreenBufferInfo) throws LastErrorException;
60 
61     @Override
ReadConsoleInput(Pointer in_hConsoleOutput, INPUT_RECORD[] out_lpBuffer, int in_nLength, IntByReference out_lpNumberOfEventsRead)62     public native void ReadConsoleInput(Pointer in_hConsoleOutput, INPUT_RECORD[] out_lpBuffer, int in_nLength, IntByReference out_lpNumberOfEventsRead) throws LastErrorException;
63 
64     @Override
SetConsoleCursorPosition(Pointer in_hConsoleOutput, COORD in_dwCursorPosition)65     public native void SetConsoleCursorPosition(Pointer in_hConsoleOutput, COORD in_dwCursorPosition) throws LastErrorException;
66 
67     @Override
SetConsoleMode(Pointer in_hConsoleOutput, int in_dwMode)68     public native void SetConsoleMode(Pointer in_hConsoleOutput, int in_dwMode) throws LastErrorException;
69 
70     @Override
SetConsoleTextAttribute(Pointer in_hConsoleOutput, short in_wAttributes)71     public native void SetConsoleTextAttribute(Pointer in_hConsoleOutput, short in_wAttributes) throws LastErrorException;
72 
73     @Override
SetConsoleTitle(String in_lpConsoleTitle)74     public native void SetConsoleTitle(String in_lpConsoleTitle) throws LastErrorException;
75 
76     @Override
WriteConsoleW(Pointer in_hConsoleOutput, char[] in_lpBuffer, int in_nNumberOfCharsToWrite, IntByReference out_lpNumberOfCharsWritten, Pointer reserved_lpReserved)77     public native void WriteConsoleW(Pointer in_hConsoleOutput, char[] in_lpBuffer, int in_nNumberOfCharsToWrite, IntByReference out_lpNumberOfCharsWritten, Pointer reserved_lpReserved) throws LastErrorException;
78 
79     @Override
ScrollConsoleScreenBuffer(Pointer in_hConsoleOutput, SMALL_RECT in_lpScrollRectangle, SMALL_RECT in_lpClipRectangle, COORD in_dwDestinationOrigin, CHAR_INFO in_lpFill)80     public native void ScrollConsoleScreenBuffer(Pointer in_hConsoleOutput, SMALL_RECT in_lpScrollRectangle, SMALL_RECT in_lpClipRectangle, COORD in_dwDestinationOrigin, CHAR_INFO in_lpFill) throws LastErrorException;
81 
82 }
83