1 /* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
2 /*
3  * anjuta
4  * Copyright (C) James Liggett 2007 <jrliggett@cox.net>
5  *
6  * anjuta is free software.
7  *
8  * You may redistribute it and/or modify it under the terms of the
9  * GNU General Public License, as published by the Free Software
10  * Foundation; either version 2 of the License, or (at your option)
11  * any later version.
12  *
13  * anjuta is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
16  * See the GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with anjuta.  If not, write to:
20  * 	The Free Software Foundation, Inc.,
21  * 	51 Franklin Street, Fifth Floor
22  * 	Boston, MA  02110-1301, USA.
23  */
24 
25 #include "svn-status.h"
26 
27 struct _SvnStatusPriv
28 {
29 	gchar *path;
30 	enum svn_wc_status_kind status;
31 };
32 
33 G_DEFINE_TYPE (SvnStatus, svn_status, G_TYPE_OBJECT);
34 
35 static void
svn_status_init(SvnStatus * self)36 svn_status_init (SvnStatus *self)
37 {
38 	self->priv = g_new0 (SvnStatusPriv, 1);
39 }
40 
41 static void
svn_status_finalize(GObject * object)42 svn_status_finalize (GObject *object)
43 {
44 	SvnStatus *self;
45 
46 	self = SVN_STATUS (object);
47 
48 	g_free (self->priv->path);
49 	g_free (self->priv);
50 
51 	G_OBJECT_CLASS (svn_status_parent_class)->finalize (object);
52 }
53 
54 static void
svn_status_class_init(SvnStatusClass * klass)55 svn_status_class_init (SvnStatusClass *klass)
56 {
57 	GObjectClass *object_class = G_OBJECT_CLASS (klass);
58 
59 	object_class->finalize = svn_status_finalize;
60 }
61 
62 SvnStatus *
svn_status_new(gchar * path,enum svn_wc_status_kind status)63 svn_status_new (gchar *path, enum svn_wc_status_kind status)
64 {
65 	SvnStatus *self;
66 
67 	self = g_object_new (SVN_TYPE_STATUS, NULL);
68 
69 	self->priv->path = g_strdup (path);
70 	self->priv->status = status;
71 
72 	return self;
73 }
74 
75 void
svn_status_destroy(SvnStatus * self)76 svn_status_destroy (SvnStatus *self)
77 {
78 	g_object_unref (self);
79 }
80 
81 gchar *
svn_status_get_path(SvnStatus * self)82 svn_status_get_path (SvnStatus *self)
83 {
84 	return g_strdup (self->priv->path);
85 }
86 
87 AnjutaVcsStatus
svn_status_get_vcs_status(SvnStatus * self)88 svn_status_get_vcs_status (SvnStatus *self)
89 {
90 	AnjutaVcsStatus status;
91 
92 	switch (self->priv->status)
93 	{
94 		case svn_wc_status_external:
95 		case svn_wc_status_incomplete:
96 			status = ANJUTA_VCS_STATUS_NONE;
97 			break;
98 		case svn_wc_status_modified:
99 		case svn_wc_status_replaced:
100 		case svn_wc_status_merged:
101 			status = ANJUTA_VCS_STATUS_MODIFIED;
102 			break;
103 		case svn_wc_status_added:
104 			status = ANJUTA_VCS_STATUS_ADDED;
105 			break;
106 		case svn_wc_status_deleted:
107 			status = ANJUTA_VCS_STATUS_DELETED;
108 			break;
109 		case svn_wc_status_conflicted:
110 		case svn_wc_status_obstructed:
111 			status = ANJUTA_VCS_STATUS_CONFLICTED;
112 			break;
113 		case svn_wc_status_missing:
114 			status = ANJUTA_VCS_STATUS_MISSING;
115 			break;
116 		case svn_wc_status_unversioned:
117 			status = ANJUTA_VCS_STATUS_UNVERSIONED;
118 			break;
119 		case svn_wc_status_ignored:
120 			status = ANJUTA_VCS_STATUS_IGNORED;
121 			break;
122 		default:
123 			status = ANJUTA_VCS_STATUS_UPTODATE;
124 	}
125 
126 	return status;
127 }
128