Simplest clang-format

This commit is contained in:
Willow Barraco 2023-09-08 22:56:50 +02:00
parent 2747980a4e
commit fbbf563d70
No known key found for this signature in database
GPG Key ID: EABA44759877E02A
6 changed files with 1476 additions and 1626 deletions

View File

@ -1,107 +1,2 @@
--- BasedOnStyle: LLVM
Language: Cpp IndentWidth: 4
# BasedOnStyle: LLVM
AccessModifierOffset: -2
AlignAfterOpenBracket: Align
AlignConsecutiveAssignments: false
AlignConsecutiveDeclarations: false
AlignEscapedNewlines: Right
AlignOperands: true
AlignTrailingComments: true
AllowAllParametersOfDeclarationOnNextLine: true
AllowShortBlocksOnASingleLine: false
AllowShortCaseLabelsOnASingleLine: false
AllowShortFunctionsOnASingleLine: All
AllowShortIfStatementsOnASingleLine: false
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: All
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: false
BinPackArguments: true
BinPackParameters: true
BraceWrapping:
AfterClass: false
AfterControlStatement: false
AfterEnum: false
AfterFunction: false
AfterNamespace: false
AfterObjCDeclaration: false
AfterStruct: false
AfterUnion: false
BeforeCatch: false
BeforeElse: false
IndentBraces: false
SplitEmptyFunction: true
SplitEmptyRecord: true
SplitEmptyNamespace: true
BreakBeforeBinaryOperators: None
BreakBeforeBraces: Attach
BreakBeforeInheritanceComma: false
BreakBeforeTernaryOperators: true
BreakConstructorInitializersBeforeComma: false
BreakConstructorInitializers: BeforeColon
BreakAfterJavaFieldAnnotations: false
BreakStringLiterals: true
ColumnLimit: 80
CommentPragmas: '^ IWYU pragma:'
CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: false
ConstructorInitializerIndentWidth: 2
ContinuationIndentWidth: 2
Cpp11BracedListStyle: true
DerivePointerAlignment: false
DisableFormat: false
ExperimentalAutoDetectBinPacking: false
FixNamespaceComments: true
ForEachMacros:
- foreach
- Q_FOREACH
- BOOST_FOREACH
IncludeCategories:
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
Priority: 2
- Regex: '^(<|"(gtest|gmock|isl|json)/)'
Priority: 3
- Regex: '.*'
Priority: 1
IncludeIsMainRegex: '(Test)?$'
IndentCaseLabels: false
IndentWidth: 2
IndentWrappedFunctionNames: false
JavaScriptQuotes: Leave
JavaScriptWrapImports: true
KeepEmptyLinesAtTheStartOfBlocks: true
MacroBlockBegin: ''
MacroBlockEnd: ''
MaxEmptyLinesToKeep: 1
NamespaceIndentation: None
ObjCBlockIndentWidth: 2
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
PenaltyBreakAssignment: 2
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakString: 1000
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PointerAlignment: Right
ReflowComments: true
SortIncludes: false
SortUsingDeclarations: true
SpaceAfterCStyleCast: false
SpaceAfterTemplateKeyword: true
SpaceBeforeAssignmentOperators: true
SpaceBeforeParens: ControlStatements
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: false
SpacesInContainerLiterals: true
SpacesInCStyleCastParentheses: false
SpacesInParentheses: false
SpacesInSquareBrackets: false
Standard: Cpp11
TabWidth: 2
UseTab: ForIndentation
...

181
drw.c
View File

@ -5,131 +5,124 @@
#include "drw.h" #include "drw.h"
#include "shm_open.h" #include "shm_open.h"
void void drwsurf_resize(struct drwsurf *ds, uint32_t w, uint32_t h, double s) {
drwsurf_resize(struct drwsurf *ds, uint32_t w, uint32_t h, double s) { if (ds->buf) {
if (ds->buf) { munmap(ds->pool_data, ds->size);
munmap(ds->pool_data, ds->size); wl_buffer_destroy(ds->buf);
wl_buffer_destroy(ds->buf); ds->buf = NULL;
ds->buf = NULL; }
}
ds->scale = s; ds->scale = s;
ds->width = w * s; ds->width = w * s;
ds->height = h * s; ds->height = h * s;
setup_buffer(ds); setup_buffer(ds);
} }
void void drwsurf_flip(struct drwsurf *ds) {
drwsurf_flip(struct drwsurf *ds) { wl_surface_attach(ds->surf, ds->buf, 0, 0);
wl_surface_attach(ds->surf, ds->buf, 0, 0); wl_surface_commit(ds->surf);
wl_surface_commit(ds->surf);
} }
void void drw_draw_text(struct drwsurf *d, Color color, uint32_t x, uint32_t y,
drw_draw_text(struct drwsurf *d, Color color, uint32_t x, uint32_t y, uint32_t w, uint32_t h, uint32_t b, const char *label) {
uint32_t w, uint32_t h, uint32_t b, const char *label) {
cairo_save(d->cairo); cairo_save(d->cairo);
cairo_set_source_rgba( cairo_set_source_rgba(
d->cairo, color.bgra[2] / (double)255, color.bgra[1] / (double)255, d->cairo, color.bgra[2] / (double)255, color.bgra[1] / (double)255,
color.bgra[0] / (double)255, color.bgra[3] / (double)255); color.bgra[0] / (double)255, color.bgra[3] / (double)255);
cairo_move_to(d->cairo, x + w / 2, y + h / 2); cairo_move_to(d->cairo, x + w / 2, y + h / 2);
pango_layout_set_text(d->layout, label, -1); pango_layout_set_text(d->layout, label, -1);
pango_layout_set_width(d->layout, (w - (b * 2)) * PANGO_SCALE); pango_layout_set_width(d->layout, (w - (b * 2)) * PANGO_SCALE);
pango_layout_set_height(d->layout, (h - (b * 2)) * PANGO_SCALE); pango_layout_set_height(d->layout, (h - (b * 2)) * PANGO_SCALE);
int width, height; int width, height;
pango_layout_get_pixel_size(d->layout, &width, &height); pango_layout_get_pixel_size(d->layout, &width, &height);
cairo_rel_move_to(d->cairo, -width / 2, -height / 2); cairo_rel_move_to(d->cairo, -width / 2, -height / 2);
pango_cairo_show_layout(d->cairo, d->layout); pango_cairo_show_layout(d->cairo, d->layout);
cairo_restore(d->cairo); cairo_restore(d->cairo);
} }
void void drw_do_clear(struct drwsurf *d, uint32_t x, uint32_t y, uint32_t w,
drw_do_clear(struct drwsurf *d, uint32_t x, uint32_t y, uint32_t w, uint32_t h) {
uint32_t h) { cairo_save(d->cairo);
cairo_save(d->cairo);
cairo_set_operator(d->cairo, CAIRO_OPERATOR_CLEAR); cairo_set_operator(d->cairo, CAIRO_OPERATOR_CLEAR);
cairo_rectangle(d->cairo, x, y, w, h); cairo_rectangle(d->cairo, x, y, w, h);
cairo_fill(d->cairo); cairo_fill(d->cairo);
cairo_restore(d->cairo); cairo_restore(d->cairo);
} }
void void drw_do_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y,
drw_do_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y, uint32_t w, uint32_t h, bool over) {
uint32_t w, uint32_t h, bool over) { cairo_save(d->cairo);
cairo_save(d->cairo);
if (over) { if (over) {
cairo_set_operator(d->cairo, CAIRO_OPERATOR_OVER); cairo_set_operator(d->cairo, CAIRO_OPERATOR_OVER);
} else { } else {
cairo_set_operator(d->cairo, CAIRO_OPERATOR_SOURCE); cairo_set_operator(d->cairo, CAIRO_OPERATOR_SOURCE);
} }
cairo_rectangle(d->cairo, x, y, w, h); cairo_rectangle(d->cairo, x, y, w, h);
cairo_set_source_rgba( cairo_set_source_rgba(
d->cairo, color.bgra[2] / (double)255, color.bgra[1] / (double)255, d->cairo, color.bgra[2] / (double)255, color.bgra[1] / (double)255,
color.bgra[0] / (double)255, color.bgra[3] / (double)255); color.bgra[0] / (double)255, color.bgra[3] / (double)255);
cairo_fill(d->cairo); cairo_fill(d->cairo);
cairo_restore(d->cairo); cairo_restore(d->cairo);
} }
void void drw_fill_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y,
drw_fill_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y, uint32_t w, uint32_t h) {
uint32_t w, uint32_t h) { drw_do_rectangle(d, color, x, y, w, h, false);
drw_do_rectangle(d, color, x, y, w, h, false);
} }
void void drw_over_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y,
drw_over_rectangle(struct drwsurf *d, Color color, uint32_t x, uint32_t y, uint32_t w, uint32_t h) {
uint32_t w, uint32_t h) { drw_do_rectangle(d, color, x, y, w, h, true);
drw_do_rectangle(d, color, x, y, w, h, true);
} }
uint32_t uint32_t setup_buffer(struct drwsurf *drwsurf) {
setup_buffer(struct drwsurf *drwsurf) { int stride = drwsurf->width * 4;
int stride = drwsurf->width * 4; drwsurf->size = stride * drwsurf->height;
drwsurf->size = stride * drwsurf->height;
int fd = allocate_shm_file(drwsurf->size); int fd = allocate_shm_file(drwsurf->size);
if (fd == -1) { if (fd == -1) {
return 1; return 1;
} }
drwsurf->pool_data = drwsurf->pool_data =
mmap(NULL, drwsurf->size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0); mmap(NULL, drwsurf->size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
if (drwsurf->pool_data == MAP_FAILED) { if (drwsurf->pool_data == MAP_FAILED) {
close(fd); close(fd);
return 1; return 1;
} }
struct wl_shm_pool *pool = struct wl_shm_pool *pool =
wl_shm_create_pool(drwsurf->ctx->shm, fd, drwsurf->size); wl_shm_create_pool(drwsurf->ctx->shm, fd, drwsurf->size);
drwsurf->buf = wl_shm_pool_create_buffer( drwsurf->buf =
pool, 0, drwsurf->width, drwsurf->height, stride, WL_SHM_FORMAT_ARGB8888); wl_shm_pool_create_buffer(pool, 0, drwsurf->width, drwsurf->height,
wl_shm_pool_destroy(pool); stride, WL_SHM_FORMAT_ARGB8888);
close(fd); wl_shm_pool_destroy(pool);
close(fd);
cairo_surface_t *s = cairo_image_surface_create_for_data( cairo_surface_t *s = cairo_image_surface_create_for_data(
drwsurf->pool_data, CAIRO_FORMAT_ARGB32, drwsurf->width, drwsurf->height, drwsurf->pool_data, CAIRO_FORMAT_ARGB32, drwsurf->width,
stride); drwsurf->height, stride);
drwsurf->cairo = cairo_create(s); drwsurf->cairo = cairo_create(s);
cairo_scale(drwsurf->cairo, drwsurf->scale, drwsurf->scale); cairo_scale(drwsurf->cairo, drwsurf->scale, drwsurf->scale);
cairo_set_antialias(drwsurf->cairo, CAIRO_ANTIALIAS_NONE); cairo_set_antialias(drwsurf->cairo, CAIRO_ANTIALIAS_NONE);
drwsurf->layout = pango_cairo_create_layout(drwsurf->cairo); drwsurf->layout = pango_cairo_create_layout(drwsurf->cairo);
pango_layout_set_font_description(drwsurf->layout, pango_layout_set_font_description(drwsurf->layout,
drwsurf->ctx->font_description); drwsurf->ctx->font_description);
pango_layout_set_auto_dir(drwsurf->layout, false); pango_layout_set_auto_dir(drwsurf->layout, false);
cairo_save(drwsurf->cairo); cairo_save(drwsurf->cairo);
return 0; return 0;
} }

1143
keyboard.c

File diff suppressed because it is too large Load Diff

1405
main.c

File diff suppressed because it is too large Load Diff

View File

@ -34,90 +34,85 @@
#include "os-compatibility.h" #include "os-compatibility.h"
int int os_fd_set_cloexec(int fd) {
os_fd_set_cloexec(int fd) { long flags;
long flags;
if (fd == -1) if (fd == -1)
return -1; return -1;
flags = fcntl(fd, F_GETFD); flags = fcntl(fd, F_GETFD);
if (flags == -1) if (flags == -1)
return -1; return -1;
if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1) if (fcntl(fd, F_SETFD, flags | FD_CLOEXEC) == -1)
return -1; return -1;
return 0; return 0;
} }
static int static int set_cloexec_or_close(int fd) {
set_cloexec_or_close(int fd) { if (os_fd_set_cloexec(fd) != 0) {
if (os_fd_set_cloexec(fd) != 0) { close(fd);
close(fd); return -1;
return -1; }
} return fd;
return fd;
} }
int int os_socketpair_cloexec(int domain, int type, int protocol, int *sv) {
os_socketpair_cloexec(int domain, int type, int protocol, int *sv) { int ret;
int ret;
#ifdef SOCK_CLOEXEC #ifdef SOCK_CLOEXEC
ret = socketpair(domain, type | SOCK_CLOEXEC, protocol, sv); ret = socketpair(domain, type | SOCK_CLOEXEC, protocol, sv);
if (ret == 0 || errno != EINVAL) if (ret == 0 || errno != EINVAL)
return ret; return ret;
#endif #endif
ret = socketpair(domain, type, protocol, sv); ret = socketpair(domain, type, protocol, sv);
if (ret < 0) if (ret < 0)
return ret; return ret;
sv[0] = set_cloexec_or_close(sv[0]); sv[0] = set_cloexec_or_close(sv[0]);
sv[1] = set_cloexec_or_close(sv[1]); sv[1] = set_cloexec_or_close(sv[1]);
if (sv[0] != -1 && sv[1] != -1) if (sv[0] != -1 && sv[1] != -1)
return 0; return 0;
close(sv[0]); close(sv[0]);
close(sv[1]); close(sv[1]);
return -1; return -1;
} }
int int os_epoll_create_cloexec(void) {
os_epoll_create_cloexec(void) { int fd;
int fd;
#ifdef EPOLL_CLOEXEC #ifdef EPOLL_CLOEXEC
fd = epoll_create1(EPOLL_CLOEXEC); fd = epoll_create1(EPOLL_CLOEXEC);
if (fd >= 0) if (fd >= 0)
return fd; return fd;
if (errno != EINVAL) if (errno != EINVAL)
return -1; return -1;
#endif #endif
fd = epoll_create(1); fd = epoll_create(1);
return set_cloexec_or_close(fd); return set_cloexec_or_close(fd);
} }
static int static int create_tmpfile_cloexec(char *tmpname) {
create_tmpfile_cloexec(char *tmpname) { int fd;
int fd;
#ifdef HAVE_MKOSTEMP #ifdef HAVE_MKOSTEMP
fd = mkostemp(tmpname, O_CLOEXEC); fd = mkostemp(tmpname, O_CLOEXEC);
if (fd >= 0) if (fd >= 0)
unlink(tmpname); unlink(tmpname);
#else #else
fd = mkstemp(tmpname); fd = mkstemp(tmpname);
if (fd >= 0) { if (fd >= 0) {
fd = set_cloexec_or_close(fd); fd = set_cloexec_or_close(fd);
unlink(tmpname); unlink(tmpname);
} }
#endif #endif
return fd; return fd;
} }
/* /*
@ -141,61 +136,59 @@ create_tmpfile_cloexec(char *tmpname) {
* If posix_fallocate() is not supported, program may receive * If posix_fallocate() is not supported, program may receive
* SIGBUS on accessing mmap()'ed file contents instead. * SIGBUS on accessing mmap()'ed file contents instead.
*/ */
int int os_create_anonymous_file(off_t size) {
os_create_anonymous_file(off_t size) { static const char template[] = "/weston-shared-XXXXXX";
static const char template[] = "/weston-shared-XXXXXX"; const char *path;
const char *path; char *name;
char *name; int fd;
int fd; int ret;
int ret;
path = getenv("XDG_RUNTIME_DIR"); path = getenv("XDG_RUNTIME_DIR");
if (!path) { if (!path) {
errno = ENOENT; errno = ENOENT;
return -1; return -1;
} }
name = malloc(strlen(path) + sizeof(template)); name = malloc(strlen(path) + sizeof(template));
if (!name) if (!name)
return -1; return -1;
strcpy(name, path); strcpy(name, path);
strcat(name, template); strcat(name, template);
fd = create_tmpfile_cloexec(name); fd = create_tmpfile_cloexec(name);
free(name); free(name);
if (fd < 0) if (fd < 0)
return -1; return -1;
#ifdef HAVE_POSIX_FALLOCATE #ifdef HAVE_POSIX_FALLOCATE
do { do {
ret = posix_fallocate(fd, 0, size); ret = posix_fallocate(fd, 0, size);
} while (ret == EINTR); } while (ret == EINTR);
if (ret != 0) { if (ret != 0) {
close(fd); close(fd);
errno = ret; errno = ret;
return -1; return -1;
} }
#else #else
do { do {
ret = ftruncate(fd, size); ret = ftruncate(fd, size);
} while (ret < 0 && errno == EINTR); } while (ret < 0 && errno == EINTR);
if (ret < 0) { if (ret < 0) {
close(fd); close(fd);
return -1; return -1;
} }
#endif #endif
return fd; return fd;
} }
#ifndef MISSING_STRCHRNUL #ifndef MISSING_STRCHRNUL
char * char *strchrnul(const char *s, int c) {
strchrnul(const char *s, int c) { while (*s && *s != c)
while (*s && *s != c) s++;
s++; return (char *)s;
return (char *)s;
} }
#endif #endif

View File

@ -5,47 +5,44 @@
#include <time.h> #include <time.h>
#include <unistd.h> #include <unistd.h>
static void static void randname(char *buf) {
randname(char *buf) { struct timespec ts;
struct timespec ts; long r;
long r; clock_gettime(CLOCK_REALTIME, &ts);
clock_gettime(CLOCK_REALTIME, &ts); r = ts.tv_nsec;
r = ts.tv_nsec; for (int i = 0; i < 6; ++i) {
for (int i = 0; i < 6; ++i) { buf[i] = 'A' + (r & 15) + (r & 16) * 2;
buf[i] = 'A' + (r & 15) + (r & 16) * 2; r >>= 5;
r >>= 5; }
}
} }
static int static int create_shm_file(void) {
create_shm_file(void) { int retries = 100;
int retries = 100; int fd;
int fd; do {
do { char name[] = "/wl_shm-XXXXXX";
char name[] = "/wl_shm-XXXXXX"; randname(name + sizeof(name) - 7);
randname(name + sizeof(name) - 7); --retries;
--retries; fd = shm_open(name, O_RDWR | O_CREAT | O_EXCL, 0600);
fd = shm_open(name, O_RDWR | O_CREAT | O_EXCL, 0600); if (fd >= 0) {
if (fd >= 0) { shm_unlink(name);
shm_unlink(name); return fd;
return fd; }
} } while (retries > 0 && errno == EEXIST);
} while (retries > 0 && errno == EEXIST); return -1;
return -1;
} }
int int allocate_shm_file(size_t size) {
allocate_shm_file(size_t size) { int fd = create_shm_file();
int fd = create_shm_file(); int ret;
int ret; if (fd < 0)
if (fd < 0) return -1;
return -1; do {
do { ret = ftruncate(fd, size);
ret = ftruncate(fd, size); } while (ret < 0 && errno == EINTR);
} while (ret < 0 && errno == EINTR); if (ret < 0) {
if (ret < 0) { close(fd);
close(fd); return -1;
return -1; }
} return fd;
return fd;
} }