67 lines
3.1 KiB
C
67 lines
3.1 KiB
C
|
/* cartographer.h
|
||
|
*
|
||
|
* Copyright 2021 Joshua Strobl
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
#include <glib-2.0/glib-object.h>
|
||
|
#include "../indexer/structs.h"
|
||
|
#include "../playlist/playlist.h"
|
||
|
|
||
|
G_BEGIN_DECLS
|
||
|
|
||
|
/**
|
||
|
* Type Definition
|
||
|
**/
|
||
|
|
||
|
#define KOTO_TYPE_CARTOGRAPHER koto_cartographer_get_type()
|
||
|
G_DECLARE_FINAL_TYPE(KotoCartographer, koto_cartographer, KOTO, CARTOGRAPHER, GObject);
|
||
|
|
||
|
/**
|
||
|
* Cartographer Functions
|
||
|
**/
|
||
|
|
||
|
KotoCartographer* koto_cartographer_new();
|
||
|
|
||
|
void koto_cartographer_add_album(KotoCartographer *self, KotoIndexedAlbum *album);
|
||
|
void koto_cartographer_add_artist(KotoCartographer *self, KotoIndexedArtist *artist);
|
||
|
void koto_cartographer_add_playlist(KotoCartographer *self, KotoPlaylist *playlist);
|
||
|
void koto_cartographer_add_track(KotoCartographer *self, KotoIndexedTrack *track);
|
||
|
|
||
|
KotoIndexedAlbum* koto_cartographer_get_album_by_uuid(KotoCartographer *self, gchar* album_uuid);
|
||
|
KotoIndexedArtist* koto_cartographer_get_artist_by_uuid(KotoCartographer *self, gchar* artist_uuid);
|
||
|
KotoPlaylist* koto_cartographer_get_playlist_by_uuid(KotoCartographer *self, gchar* playlist_uuid);
|
||
|
KotoIndexedTrack* koto_cartographer_get_track_by_uuid(KotoCartographer *self, gchar* track_uuid);
|
||
|
|
||
|
gboolean koto_cartographer_has_album(KotoCartographer *self, KotoIndexedAlbum *album);
|
||
|
gboolean koto_cartographer_has_album_by_uuid(KotoCartographer *self, gchar* album_uuid);
|
||
|
gboolean koto_cartographer_has_artist(KotoCartographer *self, KotoIndexedArtist *artist);
|
||
|
gboolean koto_cartographer_has_artist_by_uuid(KotoCartographer *self, gchar* artist_uuid);
|
||
|
gboolean koto_cartographer_has_playlist(KotoCartographer *self, KotoPlaylist *playlist);
|
||
|
gboolean koto_cartographer_has_playlist_by_uuid(KotoCartographer *self, gchar* playlist_uuid);
|
||
|
gboolean koto_cartographer_has_track(KotoCartographer *self, KotoIndexedTrack *track);
|
||
|
gboolean koto_cartographer_has_track_by_uuid(KotoCartographer *self, gchar* track_uuid);
|
||
|
|
||
|
void koto_cartographer_remove_album(KotoCartographer *self, KotoIndexedAlbum *album);
|
||
|
void koto_cartographer_remove_album_by_uuid(KotoCartographer *self, gchar* album_uuid);
|
||
|
void koto_cartographer_remove_artist(KotoCartographer *self, KotoIndexedArtist *artist);
|
||
|
void koto_cartographer_remove_artist_by_uuid(KotoCartographer *self, gchar* artist_uuid);
|
||
|
void koto_cartographer_remove_playlist(KotoCartographer *self, KotoPlaylist *playlist);
|
||
|
void koto_cartographer_remove_playlist_by_uuid(KotoCartographer *self, gchar* playlist_uuid);
|
||
|
void koto_cartographer_remove_track(KotoCartographer *self, KotoIndexedTrack *track);
|
||
|
void koto_cartographer_remove_track_by_uuid(KotoCartographer *self, gchar* track_uuid);
|
||
|
|
||
|
G_END_DECLS
|