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
|
/* GSequencer - Advanced GTK Sequencer
* Copyright (C) 2005-2020 Joël Krähemann
*
* This file is part of GSequencer.
*
* GSequencer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* GSequencer 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with GSequencer. If not, see <http://www.gnu.org/licenses/>.
*/
#include <ags/server/security/ags_auth_security_context.h>
#include <stdlib.h>
#include <ags/i18n.h>
void ags_auth_security_context_class_init(AgsAuthSecurityContextClass *auth_security_context);
void ags_auth_security_context_init(AgsAuthSecurityContext *auth_security_context);
void ags_auth_security_context_finalize(GObject *gobject);
/**
* SECTION:ags_auth_security_context
* @short_description: auth security context
* @title: AgsAuthSecurityContext
* @section_id:
* @include: ags/server/security/ags_auth_security_context.h
*
* The #AgsAuthSecurityContext has got all available privileges to do anything.
*/
static gpointer ags_auth_security_context_parent_class = NULL;
AgsAuthSecurityContext *ags_auth_security_context = NULL;
GType
ags_auth_security_context_get_type()
{
static gsize g_define_type_id__static = 0;
if(g_once_init_enter(&g_define_type_id__static)){
GType ags_type_auth_security_context = 0;
static const GTypeInfo ags_auth_security_context_info = {
sizeof (AgsAuthSecurityContextClass),
NULL, /* base_init */
NULL, /* base_finalize */
(GClassInitFunc) ags_auth_security_context_class_init,
NULL, /* class_finalize */
NULL, /* class_data */
sizeof (AgsAuthSecurityContext),
0, /* n_preallocs */
(GInstanceInitFunc) ags_auth_security_context_init,
};
ags_type_auth_security_context = g_type_register_static(AGS_TYPE_SECURITY_CONTEXT,
"AgsAuthSecurityContext",
&ags_auth_security_context_info,
0);
g_once_init_leave(&g_define_type_id__static, ags_type_auth_security_context);
}
return(g_define_type_id__static);
}
void
ags_auth_security_context_class_init(AgsAuthSecurityContextClass *auth_security_context)
{
GObjectClass *gobject;
ags_auth_security_context_parent_class = g_type_class_peek_parent(auth_security_context);
/* GObjectClass */
gobject = (GObjectClass *) auth_security_context;
gobject->finalize = ags_auth_security_context_finalize;
/* properties */
}
void
ags_auth_security_context_init(AgsAuthSecurityContext *auth_security_context)
{
//empty
}
void
ags_auth_security_context_finalize(GObject *gobject)
{
AgsAuthSecurityContext *auth_security_context;
auth_security_context = AGS_AUTH_SECURITY_CONTEXT(gobject);
/* call parent */
G_OBJECT_CLASS(ags_auth_security_context_parent_class)->finalize(gobject);
}
/**
* ags_auth_security_context_get_instance:
*
* Get instance.
*
* Returns: (transfer none): the #AgsAuthSecurityContext
*
* Since: 3.0.0
*/
AgsAuthSecurityContext*
ags_auth_security_context_get_instance()
{
static GMutex mutex;
g_mutex_lock(&mutex);
if(ags_auth_security_context == NULL){
ags_auth_security_context = ags_auth_security_context_new();
}
g_mutex_unlock(&mutex);
return(ags_auth_security_context);
}
/**
* ags_auth_security_context_new:
*
* Create #AgsAuthSecurityContext.
*
* Returns: the new #AgsAuthSecurityContext instance
*
* Since: 3.0.0
*/
AgsAuthSecurityContext*
ags_auth_security_context_new()
{
AgsAuthSecurityContext *auth_security_context;
auth_security_context = (AgsAuthSecurityContext *) g_object_new(AGS_TYPE_AUTH_SECURITY_CONTEXT,
NULL);
return(auth_security_context);
}
|