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
|
/* test-modeline.c
*
* Copyright 2025 Christian Hergert <chergert@redhat.com>
*
* This library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of the
* License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*
* SPDX-License-Identifier: LGPL-2.1-or-later
*/
#include "line-reader-private.h"
#include "modeline.c"
int
main (int argc,
char *argv[])
{
for (int i = 1; i < argc; i++)
{
g_autofree char *contents = NULL;
g_autoptr(GError) error = NULL;
g_autoptr(Modeline) m = NULL;
LineReader reader;
const char *first = NULL;
const char *last = NULL;
gsize len;
gsize line_len;
char *line;
if (!g_file_get_contents (argv[i], &contents, &len, &error))
g_error ("%s", error->message);
if (!g_utf8_validate (contents, len, NULL))
g_error ("Only UTF-8 is supported from test program");
line_reader_init (&reader, contents, len);
while ((line = line_reader_next (&reader, &line_len)))
{
line[line_len] = 0;
if (first == NULL)
first = line;
if (line_len > 0)
last = line;
}
if ((m = modeline_parse (first)) || (m = modeline_parse (last)))
{
g_print ("%s\n", m->editor);
if (m->settings != NULL)
{
for (guint j = 0; m->settings[j]; j++)
g_print (" %s\n", m->settings[j]);
}
}
}
return 0;
}
|