124 lines
7.2 KiB
C
124 lines
7.2 KiB
C
/* ide-build-system.h
|
|
*
|
|
* Copyright 2015-2019 Christian Hergert <christian@hergert.me>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 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 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: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#if !defined (IDE_FOUNDRY_INSIDE) && !defined (IDE_FOUNDRY_COMPILATION)
|
|
# error "Only <libide-foundry.h> can be included directly."
|
|
#endif
|
|
|
|
#include <libide-core.h>
|
|
#include <libide-code.h>
|
|
|
|
#include "ide-foundry-types.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
#define IDE_TYPE_BUILD_SYSTEM (ide_build_system_get_type())
|
|
|
|
IDE_AVAILABLE_IN_3_32
|
|
G_DECLARE_INTERFACE (IdeBuildSystem, ide_build_system, IDE, BUILD_SYSTEM, IdeObject)
|
|
|
|
struct _IdeBuildSystemInterface
|
|
{
|
|
GTypeInterface parent_iface;
|
|
|
|
gint (*get_priority) (IdeBuildSystem *self);
|
|
void (*get_build_flags_async) (IdeBuildSystem *self,
|
|
GFile *file,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
gchar **(*get_build_flags_finish) (IdeBuildSystem *self,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
void (*get_build_flags_for_files_async) (IdeBuildSystem *self,
|
|
GPtrArray *files,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
GHashTable *(*get_build_flags_for_files_finish) (IdeBuildSystem *self,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
gchar *(*get_builddir) (IdeBuildSystem *self,
|
|
IdePipeline *pipeline);
|
|
gchar *(*get_id) (IdeBuildSystem *self);
|
|
gchar *(*get_display_name) (IdeBuildSystem *self);
|
|
gboolean (*supports_toolchain) (IdeBuildSystem *self,
|
|
IdeToolchain *toolchain);
|
|
gchar *(*get_project_version) (IdeBuildSystem *self);
|
|
gboolean (*supports_language) (IdeBuildSystem *self,
|
|
const char *language);
|
|
};
|
|
|
|
IDE_AVAILABLE_IN_3_32
|
|
IdeBuildSystem *ide_build_system_from_context (IdeContext *context);
|
|
IDE_AVAILABLE_IN_3_32
|
|
gchar *ide_build_system_get_id (IdeBuildSystem *self);
|
|
IDE_AVAILABLE_IN_3_32
|
|
gchar *ide_build_system_get_display_name (IdeBuildSystem *self);
|
|
IDE_AVAILABLE_IN_3_32
|
|
gint ide_build_system_get_priority (IdeBuildSystem *self);
|
|
IDE_AVAILABLE_IN_3_32
|
|
gchar *ide_build_system_get_builddir (IdeBuildSystem *self,
|
|
IdePipeline *pipeline);
|
|
IDE_AVAILABLE_IN_3_32
|
|
gchar *ide_build_system_get_project_version (IdeBuildSystem *self);
|
|
IDE_AVAILABLE_IN_3_32
|
|
void ide_build_system_get_build_flags_async (IdeBuildSystem *self,
|
|
GFile *file,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
IDE_AVAILABLE_IN_3_32
|
|
gchar **ide_build_system_get_build_flags_finish (IdeBuildSystem *self,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
IDE_AVAILABLE_IN_3_32
|
|
void ide_build_system_get_build_flags_for_files_async (IdeBuildSystem *self,
|
|
GPtrArray *files,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
IDE_AVAILABLE_IN_3_32
|
|
GHashTable *ide_build_system_get_build_flags_for_files_finish (IdeBuildSystem *self,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
IDE_AVAILABLE_IN_3_32
|
|
void ide_build_system_get_build_flags_for_dir_async (IdeBuildSystem *self,
|
|
GFile *directory,
|
|
GCancellable *cancellable,
|
|
GAsyncReadyCallback callback,
|
|
gpointer user_data);
|
|
IDE_AVAILABLE_IN_3_32
|
|
GHashTable *ide_build_system_get_build_flags_for_dir_finish (IdeBuildSystem *self,
|
|
GAsyncResult *result,
|
|
GError **error);
|
|
void _ide_build_system_set_project_file (IdeBuildSystem *self,
|
|
GFile *project_file) G_GNUC_INTERNAL;
|
|
IDE_AVAILABLE_IN_3_32
|
|
gboolean ide_build_system_supports_toolchain (IdeBuildSystem *self,
|
|
IdeToolchain *toolchain);
|
|
IDE_AVAILABLE_IN_41
|
|
gboolean ide_build_system_supports_language (IdeBuildSystem *self,
|
|
const char *language);
|
|
|
|
G_END_DECLS
|