aboutsummaryrefslogtreecommitdiff
path: root/src/formatter/utils.c
blob: 0f638a5709b45cc77aa4b388c2796741cb4ca0b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
// This file defines utility functions for autoformatting code

#include <stdbool.h>
#include <stdint.h>

#include "../ast.h"
#include "../parse/context.h"
#include "../stdlib/datatypes.h"
#include "../stdlib/optionals.h"
#include "../stdlib/tables.h"
#include "../stdlib/text.h"
#include "formatter.h"

const Text_t single_indent = Text("    ");

void add_line(Text_t *code, Text_t line, Text_t indent) {
    if (code->length == 0) {
        *code = line;
    } else {
        if (line.length > 0) *code = Texts(*code, "\n", indent, line);
        else *code = Texts(*code, "\n");
    }
}

OptionalText_t next_comment(Table_t comments, const char **pos, const char *end) {
    for (const char *p = *pos; p < end; p++) {
        const char **comment_end = Table$get(comments, &p, parse_comments_info);
        if (comment_end) {
            *pos = *comment_end;
            return Text$from_strn(p, (size_t)(*comment_end - p));
        }
    }
    return NONE_TEXT;
}

bool range_has_comment(const char *start, const char *end, Table_t comments) {
    OptionalText_t comment = next_comment(comments, &start, end);
    return (comment.length >= 0);
}

CONSTFUNC int suggested_blank_lines(ast_t *first, ast_t *second) {
    if (second == NULL) return 0;

    for (;;) {
        if (first->tag == Declare && Match(first, Declare)->value) {
            first = Match(first, Declare)->value;
        } else if (first->tag == DebugLog) {
            return 1;
        } else break;
    }

    for (;;) {
        if (second->tag == Declare && Match(second, Declare)->value) {
            second = Match(second, Declare)->value;
        } else if (second->tag == DebugLog) {
            return 1;
        } else break;
    }

    switch (first->tag) {
    case If:
    case When:
    case Repeat:
    case While:
    case For:
    case Block:
    case ConvertDef:
    case FunctionDef:
    case Lambda:
    case StructDef:
    case EnumDef:
    case LangDef:
    case Extend: return 1;
    case Use: {
        if (second->tag != Use) return 1;
        break;
    }
    case Declare: {
        DeclareMatch(decl, first, Declare);
        if (decl->value) return suggested_blank_lines(decl->value, second);
        break;
    }
    case Assign: {
        DeclareMatch(assign, first, Assign);
        for (ast_list_t *val = assign->values; val; val = val->next) {
            if (suggested_blank_lines(val->ast, second) > 0) return 1;
        }
        break;
    }
    default: break;
    }

    switch (second->tag) {
    case If:
    case When:
    case Repeat:
    case While:
    case For:
    case Block:
    case ConvertDef:
    case FunctionDef:
    case Lambda:
    case StructDef:
    case EnumDef:
    case LangDef:
    case Extend: return 1;
    default: break;
    }
    return 0;
}

Text_t indent_code(Text_t code) {
    if (code.length <= 0) return code;
    return Texts(single_indent, Text$replace(code, Text("\n"), Texts("\n", single_indent)));
}

Text_t parenthesize(Text_t code, Text_t indent) {
    if (Text$has(code, Text("\n"))) return Texts("(\n", indent, indent_code(code), "\n", indent, ")");
    else return Texts("(", code, ")");
}

CONSTFUNC ast_t *unwrap_block(ast_t *ast) {
    if (ast == NULL) return NULL;
    while (ast->tag == Block && Match(ast, Block)->statements && Match(ast, Block)->statements->next == NULL) {
        ast = Match(ast, Block)->statements->ast;
    }
    if (ast->tag == Block && Match(ast, Block)->statements == NULL) return NULL;
    return ast;
}

OptionalText_t termify_inline(ast_t *ast, Table_t comments) {
    if (range_has_comment(ast->start, ast->end, comments)) return NONE_TEXT;
    switch (ast->tag) {
    case BINOP_CASES:
    case Not:
    case Negative:
    case HeapAllocate:
    case StackReference: return parenthesize(format_inline_code(ast, comments), EMPTY_TEXT);
    default: return format_inline_code(ast, comments);
    }
}

Text_t termify(ast_t *ast, Table_t comments, Text_t indent) {
    switch (ast->tag) {
    case BINOP_CASES:
    case Not:
    case Negative:
    case HeapAllocate:
    case StackReference: return parenthesize(format_code(ast, comments, indent), indent);
    default: return format_inline_code(ast, comments);
    }
}