VirtualBox

source: vbox/trunk/src/VBox/Additions/linux/drm/indent.sed@ 93115

Last change on this file since 93115 was 93115, checked in by vboxsync, 2 years ago

scm --update-copyright-year

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 9.6 KB
Line 
1# Oracle VM VirtualBox
2# VirtualBox to Linux kernel coding style conversion script.
3
4#
5# Copyright (C) 2017-2022 Oracle Corporation
6#
7# This file is part of VirtualBox Open Source Edition (OSE), as
8# available from http://www.virtualbox.org. This file is free software;
9# you can redistribute it and/or modify it under the terms of the GNU
10# General Public License (GPL) as published by the Free Software
11# Foundation, in version 2 as it comes in the "COPYING" file of the
12# VirtualBox OSE distribution. VirtualBox OSE is distributed in the
13# hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
14#
15
16# This script is for converting code inside the vboxvideo module to Linux
17# kernel coding style. It assumes correct VirtualBox coding style, will break
18# break if the coding style is wrong (e.g. tab instead of spaces) and is not
19# indended to be a generic solution: for example, identifiers will be
20# translated case by case, not algorithmically. It also assumes that any
21# flexibility in either coding style will be used where possible to make the
22# code conform to both at once.
23
24# Replace up to six leading groups of four spaces with tabs.
25s/^ */\t\t\t\t\t\t/g
26s/^ /\t\t\t\t\t/g
27s/^ /\t\t\t\t/g
28s/^ /\t\t\t/g
29s/^ /\t\t/g
30s/^ /\t/g
31
32# Change various symbols and file names to fit kernel conventions.
33
34# Miscellaneous:
35# Remove @file headers.
36\|/\*\* @file| {
37:start
38 N
39 s|\*/|\*/|g
40 T start
41 N
42 d
43}
44/^\/\* \$Id:.*\*\/$/d
45/^typedef .* HGSMIOFFSET;/d
46/^typedef .* HGSMISIZE;/d
47s/^#\( *\)include <\([^/]*\)>/#\1include "\2"/g
48
49# File names:
50s/\bHGSMIBase\.h\b/vbox_drv.h/g
51s/\bHGSMIChannels\.h\b/hgsmi_channels.h/g
52s/\bHGSMIChSetup\.h\b/hgsmi_ch_setup.h/g
53s/\bHGSMIContext\.h\b/hgsmi_context.h/g
54s/\bHGSMIDefs\.h\b/hgsmi_defs.h/g
55s/\bVBoxVideoGuest\.h\b/vboxvideo_guest.h/g
56s/\bVBoxVideo\.h\b/vboxvideo.h/g
57s/\bVBoxVideoIPRT\.h\b/vbox_err.h/g
58s/\bVBoxVideoVBE\.h\b/vboxvideo_vbe.h/g
59
60# Function names:
61s/\btestQueryConf\b/hgsmi_test_query_conf/g
62s/\bVBoxHGSMIBufferAlloc\b/hgsmi_buffer_alloc/g
63s/\bVBoxHGSMIBufferFree\b/hgsmi_buffer_free/g
64s/\bVBoxHGSMIBufferSubmit\b/hgsmi_buffer_submit/g
65s/\bVBoxHGSMICursorPosition\b/hgsmi_cursor_position/g
66s/\bVBoxHGSMIGetModeHints\b/hgsmi_get_mode_hints/g
67s/\bVBoxHGSMIProcessDisplayInfo\b/hgsmi_process_display_info/g
68s/\bVBoxHGSMIReportFlagsLocation\b/hgsmi_report_flags_location/g
69s/\bVBoxHGSMISendCapsInfo\b/hgsmi_send_caps_info/g
70s/\bVBoxHGSMIUpdateInputMapping\b/hgsmi_update_input_mapping/g
71s/\bVBoxHGSMIUpdatePointerShape\b/hgsmi_update_pointer_shape/g
72s/\bvboxHwBufferAvail\b/vbva_buffer_available/g
73s/\bvboxHwBufferEndUpdate\b/vbva_buffer_end_update/g
74s/\bvboxHwBufferFlush\b/vbva_buffer_flush/g
75s/\bvboxHwBufferPlaceDataAt\b/vbva_buffer_place_data_at/g
76s/\bvboxHwBufferWrite\b/vbva_write/g
77s/\bVBoxQueryConfHGSMI\b/hgsmi_query_conf/g
78s/\bVBoxVBVABufferBeginUpdate\b/vbva_buffer_begin_update/g
79s/\bVBoxVBVABufferEndUpdate\b/vbva_buffer_end_update/g
80s/\bVBoxVBVADisable\b/vbva_disable/g
81s/\bVBoxVBVAEnable\b/vbva_enable/g
82s/\bvboxVBVAInformHost\b/vbva_inform_host/g
83s/\bvboxVBVASetupBufferContext\b/vbva_setup_buffer_context/g
84s/\bVBVO_PORT_READ_U8\b/inb/g
85s/\bVBVO_PORT_READ_U16\b/inw/g
86s/\bVBVO_PORT_READ_U32\b/inl/g
87s/\bVBVO_PORT_WRITE_U8\b *( *\(\b[^(),]*\b\) *, *\(\b[^(),]*\b\) *)/outb(\2, \1)/g
88s/\bVBVO_PORT_WRITE_U16\b *( *\(\b[^(),]*\b\) *, *\(\b[^(),]*\b\) *)/outw(\2, \1)/g
89s/\bVBVO_PORT_WRITE_U32\b *( *\(\b[^(),]*\b\) *, *\(\b[^(),]*\b\) *)/outl(\2, \1)/g
90s/\bVBVO_PORT_WRITE_U[0-9]*\b/VBVO_PORT_WRITE_statement_should_be_on_one_line/g
91
92# Macros:
93s/\b_1K\b/1024/g
94s/\b_4M\b/4*1024*1024/g
95s/\bAssert\b\([^;]*\);/WARN_ON_ONCE(!(\1));/g
96s/\bAssertCompile\b/assert_compile/g
97s/\bAssertCompileSize\b/assert_compile_size/g
98s/\bAssertPtr\b\([^;]*\);/WARN_ON_ONCE(!(\1));/g
99s/\bAssertPtrReturn\b/assert_ptr_return/g
100/AssertPtrNullReturnVoid/d
101s/\bAssertRC\b\([^;]*\);/WARN_ON_ONCE(RT_FAILURE\1);/g
102s/\bAssertRC\b/Assert_RC_statement_should_be_on_one_line/g
103s/\bDECLCALLBACK\b(\([^)]*\))/\1/g
104 s/\bDECLCALLBACKTYPE\b(\([^,)]*\), *\([^,)]*\), *(\([^;)]*\) *) *)/\1 \2(\3)/g
105s/\bDECLCALLBACKMEMBER\b(\([^,)]*\), *\([^,)]*\), *(\([^;)]*\) *) *)/\1 (*\2)(\3)/g
106s/^\bDECLHIDDEN\b(\([^)]*\))/\1/g
107s/\bDECLINLINE\b(\([^)]*\))/static inline \1/g
108s/\bRT_BIT\b/BIT/g
109s/\bRT_BOOL\b(\([^)]*\))/(!!(\1))/g
110/RT_C_DECLS/d
111s/\bUINT16_MAX\b/U16_MAX/g
112s/\bUINT32_MAX\b/U32_MAX/g
113s/\bUINT32_C\b(\(.*\))/\1u/g
114s/!RT_VALID_PTR(/WARN_ON(!/g
115s/\bRT_UNTRUSTED_VOLATILE_HOST\b//g
116s/\bRT_UNTRUSTED_VOLATILE_GUEST\b//g
117s/\bRT_UNTRUSTED_VOLATILE_HSTGST\b//g
118
119# Type names:
120s/\bint32_t\b/s32/g
121s/\buint8_t\b/u8/g
122s/\buint16_t\b/u16/g
123s/\buint32_t\b/u32/g
124s/(HGSMIBUFFERLOCATION \*)//g # Remove C++ casts from void.
125s/typedef struct HGSMIBUFFERLOCATION/struct hgsmi_buffer_location/g
126s/struct HGSMIBUFFERLOCATION/struct hgsmi_buffer_location/g
127s/} HGSMIBUFFERLOCATION/}/g
128s/\bHGSMIBUFFERLOCATION\b/struct hgsmi_buffer_location/g
129s/\([^*] *\)\bPHGSMIGUESTCOMMANDCONTEXT\b/\1struct gen_pool */g
130s/(HGSMIHOSTFLAGS \*)//g # Remove C++ casts from void.
131s/typedef struct HGSMIHOSTFLAGS/struct hgsmi_host_flags/g
132s/struct HGSMIHOSTFLAGS/struct hgsmi_host_flags/g
133s/} HGSMIHOSTFLAGS/}/g
134s/\bHGSMIHOSTFLAGS\b/struct hgsmi_host_flags/g
135s/\bHGSMIOFFSET\b/u32/g
136s/\bHGSMISIZE\b/u32/g
137s/\bRTRECT\b/void/g
138s/(VBVABUFFERCONTEXT \*)//g # Remove C++ casts from void.
139s/struct VBVABUFFERCONTEXT/struct vbva_buf_context/g
140s/} VBVABUFFERCONTEXT/} vbva_buf_context/g
141s/\bVBVABUFFERCONTEXT\b/struct vbva_buf_context/g
142s/\([^*] *\)\bPVBVABUFFERCONTEXT\b/\1struct vbva_buf_context */g
143s/(VBVACAPS \*)//g # Remove C++ casts from void.
144s/struct VBVACAPS/struct vbva_caps/g
145s/} VBVACAPS/} vbva_caps/g
146s/\bVBVACAPS\b/struct vbva_caps/g
147s/(VBVACONF32 \*)//g # Remove C++ casts from void.
148s/struct VBVACONF32/struct vbva_conf32/g
149s/} VBVACONF32/} vbva_conf32/g
150s/\bVBVACONF32\b/struct vbva_conf32/g
151s/(VBVACURSORPOSITION \*)//g # Remove C++ casts from void.
152s/struct VBVACURSORPOSITION/struct vbva_cursor_position/g
153s/} VBVACURSORPOSITION/} vbva_cursor_position/g
154s/\bVBVACURSORPOSITION\b/struct vbva_cursor_position/g
155s/(VBVAENABLE_EX \*)//g # Remove C++ casts from void.
156s/struct VBVAENABLE_EX/struct vbva_enable_ex/g
157s/} VBVAENABLE_EX/} vbva_enable_ex/g
158s/\bVBVAENABLE_EX\b/struct vbva_enable_ex/g
159s/(VBVAMOUSEPOINTERSHAPE \*)//g # Remove C++ casts from void.
160s/struct VBVAMOUSEPOINTERSHAPE/struct vbva_mouse_pointer_shape/g
161s/} VBVAMOUSEPOINTERSHAPE/} vbva_mouse_pointer_shape/g
162s/\bVBVAMOUSEPOINTERSHAPE\b/struct vbva_mouse_pointer_shape/g
163s/(VBVAMODEHINT \*)//g # Remove C++ casts from void.
164s/struct VBVAMODEHINT/struct vbva_modehint/g
165s/} VBVAMODEHINT/} vbva_modehint/g
166s/\bVBVAMODEHINT\b/struct vbva_modehint/g
167s/(VBVAQUERYMODEHINTS \*)//g # Remove C++ casts from void.
168s/struct VBVAQUERYMODEHINTS/struct vbva_query_mode_hints/g
169s/} VBVAQUERYMODEHINTS/} vbva_query_mode_hints/g
170s/\bVBVAQUERYMODEHINTS\b/struct vbva_query_mode_hints/g
171s/(VBVAREPORTINPUTMAPPING \*)//g # Remove C++ casts from void.
172s/struct VBVAREPORTINPUTMAPPING/struct vbva_report_input_mapping/g
173s/} VBVAREPORTINPUTMAPPING/} vbva_report_input_mapping/g
174s/\bVBVAREPORTINPUTMAPPING\b/struct vbva_report_input_mapping/g
175
176# Variable and parameter names:
177s/\baRecords\b/records/g
178s/\bau8Data\b/data/g
179s/\bau32Reserved\b/reserved/g
180s/\bBase\b/base/g
181s/\bbEnable\b/enable/g
182s/\bbRc\b/ret/g
183s/\bcb\b/len/g
184s/\bcbBuffer\b/buffer_length/g
185s/\bcbChunk\b/chunk/g
186s/\bcbData\b/data_len/g
187s/\bcbHintsStructureGuest\b/hints_structure_guest_size/g
188s/\bcbHwBufferAvail\b/available/g
189s/\bcbLength\b/len/g
190s/\bcbLocation\b/buf_len/g
191s/\bcbPartialWriteThreshold\b/partial_write_tresh/g ## @todo fix this?
192s/\bcbPitch\b/pitch/g
193s/\bcbPixels\b/pixel_len/g
194s/\bcBPP\b/bpp/g
195s/\bcbRecord\b/len_and_flags/g ## @todo fix this?
196s/\bcDisplay\b/display/g
197s/\bcHeight\b/height/g
198s/\bcHintsQueried\b/hints_queried_count/g
199s/\bcHotX\b/hot_x/g
200s/\bcHotY\b/hot_y/g
201s/\bcOriginX\b/origin_x/g
202s/\bcOriginY\b/origin_y/g
203s/\bcScreen\b/screen/g
204s/\bcScreens\b/screens/g
205s/\bcWidth\b/width/g
206s/\bfCaps\b/caps/g
207s/\bfFlags\b/flags/g
208s/\bfHwBufferOverflow\b/buffer_overflow/g
209s/\bfReportPosition\b/report_position/g
210s/\bfu32Flags\b/flags/g
211s/\bhostFlags\b/host_flags/g
212s/\bi32Diff\b/diff/g
213s/\bi32OriginX\b/origin_x/g
214s/\bi32OriginY\b/origin_y/g
215s/\bi32Result\b/result/g
216s/\bindexRecordFirst\b/first_record_index/g
217s/\bindexRecordFree\b/free_record_index/g
218s/\bindexRecordNext\b/next/g
219s/\boff32Data\b/data_offset/g
220s/\boff32Free\b/free_offset/g
221s/\boffLocation\b/location/g
222s/\boffStart\b/start_offset/g
223s/\boffVRAMBuffer\b/buffer_offset/g
224s/\bpaHints\b/hints/g
225s/\bpCtx\b/ctx/g
226s/\bpPixels\b/pixels/g
227s/\bpRecord\b/record/g
228s/\bpulValue\b/value_ret/g
229s/\bpVBVA\b/vbva/g
230s/\bpxHost\b/x_host/g
231s/\bpyHost\b/y_host/g
232s/\bu16BitsPerPixel\b/bits_per_pixel/g
233s/\bu16Flags\b/flags/g
234s/\bu32BytesTillBoundary\b/bytes_till_boundary/g
235s/\bu32Flags\b/flags/g
236s/\bu32Height\b/height/g
237s/\bu32HostEvents\b/host_events/g
238s/\bu32HostFlags\b/host_flags/g
239s/\bu32HotX\b/hot_x/g
240s/\bu32HotY\b/hot_y/g
241s/\bu32Index\b/index/g
242s/\bu32LineSize\b/line_size/g
243s/\bu32Offset\b/offset/g
244s/\bu32Reserved\b/reserved/g
245s/\bu32ScreenId\b/screen_id/g
246s/\bu32StartOffset\b/start_offset/g
247s/\bu32SupportedOrders\b/supported_orders/g
248s/\bu32Value\b/value/g
249s/\bu32ViewIndex\b/view_index/g
250s/\bu32Width\b/width/g
251s/\bulValue\b/value/g
252
253# Header file guard:
254s/__HGSMIChannels_h__/__HGSMI_CHANNELS_H__/g
255s/VBOX_INCLUDED_Graphics_HGSMIChSetup_h/__HGSMI_CH_SETUP_H__/g
256
257# And move braces. This must be the last expression as it jumps to the next
258# line.
259/..*$/ {
260 N
261 s/^\([\t ][\t ]*\)} *\n[\t ]*else/\1} else/g
262 t continue_else
263 b try_brace
264:continue_else
265 N
266:try_brace
267 s/^\([\t ].*\)\n[\t ][\t ]*{/\1 {/g
268 s/^\([^#()]*\)\n[\t ]*{/\1 {/g
269 t done_brace
270 P
271 D
272:done_brace
273 p
274 d
275}
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use