111 lines
2.7 KiB
C
111 lines
2.7 KiB
C
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8; coding: utf-8 -*-
|
||
|
* gtksourceviewutils.c
|
||
|
*
|
||
|
* Copyright (C) 2007 - Gustavo Giráldez and Paolo Maggi
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU Library General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* This program 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 Library General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public
|
||
|
* License* along with this program; if not, write to the Free
|
||
|
* Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||
|
* 02111-1307, USA.
|
||
|
*/
|
||
|
|
||
|
#ifdef HAVE_CONFIG_H
|
||
|
#include <config.h>
|
||
|
#endif
|
||
|
|
||
|
#include "gtksourceview-utils.h"
|
||
|
|
||
|
#define SOURCEVIEW_DIR "gtksourceview-2.0"
|
||
|
|
||
|
|
||
|
gchar **
|
||
|
_gtk_source_view_get_default_dirs (const char *basename,
|
||
|
gboolean compat)
|
||
|
{
|
||
|
const gchar * const *xdg_dirs;
|
||
|
GPtrArray *dirs;
|
||
|
|
||
|
dirs = g_ptr_array_new ();
|
||
|
|
||
|
/* user dir */
|
||
|
g_ptr_array_add (dirs, g_build_filename (g_get_user_data_dir (),
|
||
|
SOURCEVIEW_DIR,
|
||
|
basename,
|
||
|
NULL));
|
||
|
|
||
|
#ifdef G_OS_UNIX
|
||
|
/* Legacy gtsourceview 1 user dir, for backward compatibility */
|
||
|
if (compat)
|
||
|
g_ptr_array_add (dirs, g_strdup_printf ("%s/%s",
|
||
|
g_get_user_data_dir (),
|
||
|
".gnome2/gtksourceview-1.0/language-specs"));
|
||
|
#endif
|
||
|
|
||
|
/* system dir */
|
||
|
for (xdg_dirs = g_get_system_data_dirs (); xdg_dirs && *xdg_dirs; ++xdg_dirs)
|
||
|
g_ptr_array_add (dirs, g_build_filename (*xdg_dirs,
|
||
|
SOURCEVIEW_DIR,
|
||
|
basename,
|
||
|
NULL));
|
||
|
|
||
|
g_ptr_array_add (dirs, NULL);
|
||
|
|
||
|
return (gchar**) g_ptr_array_free (dirs, FALSE);
|
||
|
}
|
||
|
|
||
|
|
||
|
static GSList *
|
||
|
build_file_listing (const gchar *directory,
|
||
|
GSList *filenames,
|
||
|
const gchar *suffix)
|
||
|
{
|
||
|
GDir *dir;
|
||
|
const gchar *name;
|
||
|
|
||
|
dir = g_dir_open (directory, 0, NULL);
|
||
|
|
||
|
if (dir == NULL)
|
||
|
return filenames;
|
||
|
|
||
|
while ((name = g_dir_read_name (dir)) != NULL)
|
||
|
{
|
||
|
gchar *full_path = g_build_filename (directory, name, NULL);
|
||
|
|
||
|
if (!g_file_test (full_path, G_FILE_TEST_IS_DIR) &&
|
||
|
g_str_has_suffix (name, suffix))
|
||
|
{
|
||
|
filenames = g_slist_prepend (filenames, full_path);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
g_free (full_path);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
g_dir_close (dir);
|
||
|
|
||
|
return filenames;
|
||
|
}
|
||
|
|
||
|
GSList *
|
||
|
_gtk_source_view_get_file_list (char **dirs,
|
||
|
const char *suffix)
|
||
|
{
|
||
|
GSList *files = NULL;
|
||
|
|
||
|
for ( ; dirs && *dirs; ++dirs)
|
||
|
files = build_file_listing (*dirs, files, suffix);
|
||
|
|
||
|
return g_slist_reverse (files);
|
||
|
}
|