summaryrefslogtreecommitdiff
path: root/sys/cdrom/gstcdplayer_ioctl_solaris.h
blob: ad95998258e7eab8bc19899ef66cd67b110e9b73 (plain)
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
/* gstcdplay
 * Copyright (c) 2002 Charles Schmidt <cbschmid@uiuc.edu> 

 * This library 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 library 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 library; if not, write to the
 * Free Software Foundation, Inc., 51 Franklin St, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

gboolean cd_init(struct cd *cd,const gchar *device)
{
        struct cdrom_tochdr toc_header;
        struct cdrom_tocentry toc_entry;
        guint i;

        cd->fd = open(device,O_RDONLY | O_NONBLOCK);

        if (cd->fd == -1) {
                return FALSE;
        }

        /* get the toc header information */
        if (ioctl(cd->fd,CDROMREADTOCHDR,&toc_header) != 0) {
                close(cd->fd);
                cd->fd = -1;
                return FALSE;
        }

        /* read each entry in the toc header */
        for (i = 1; i <= toc_header.cdth_trk1; i++) {
                toc_entry.cdte_format = CDROM_MSF;
                toc_entry.cdte_track = i;

                if (ioctl(cd->fd,CDROMREADTOCENTRY,&toc_entry) != 0) {
                        close(cd->fd);
                        cd->fd = -1;
                        return FALSE;
                }

                cd->tracks[i].minute = toc_entry.cdte_addr.msf.minute;
                cd->tracks[i].second = toc_entry.cdte_addr.msf.second;
                cd->tracks[i].frame = toc_entry.cdte_addr.msf.frame;
                cd->tracks[i].data_track = (toc_entry.cdte_ctrl == CDROM_DATA_TRACK);
        }

        /* read the leadout */
        toc_entry.cdte_track = CDROM_LEADOUT;
        toc_entry.cdte_format = CDROM_MSF;
        if (ioctl(cd->fd,CDROMREADTOCENTRY,&toc_entry) != 0) {
                close(cd->fd);
                cd->fd = -1;
                return FALSE;
        }
        cd->tracks[LEADOUT].minute = toc_entry.cdte_addr.msf.minute;
        cd->tracks[LEADOUT].second = toc_entry.cdte_addr.msf.second;
        cd->tracks[LEADOUT].frame = toc_entry.cdte_addr.msf.frame;

        cd->num_tracks = toc_header.cdth_trk1;

        return TRUE;
}

gboolean cd_start(struct cd *cd,gint start_track,gint end_track)
{
        struct cdrom_msf msf;

        if (cd->fd == -1) {
                return FALSE;
        }

        cd_fix_track_range(cd,&start_track,&end_track);

        msf.cdmsf_min0 = cd->tracks[start_track].minute;
        msf.cdmsf_sec0 = cd->tracks[start_track].second;
        msf.cdmsf_frame0 = cd->tracks[start_track].frame;

        if (end_track == LEADOUT) {
                msf.cdmsf_min1 = cd->tracks[end_track].minute;
                msf.cdmsf_sec1 = cd->tracks[end_track].second;
                msf.cdmsf_frame1 = cd->tracks[end_track].frame;
        } else {
                msf.cdmsf_min1 = cd->tracks[end_track+1].minute;
                msf.cdmsf_sec1 = cd->tracks[end_track+1].second;
                msf.cdmsf_frame1 = cd->tracks[end_track+1].frame;
        }

        if (ioctl(cd->fd,CDROMPLAYMSF,&msf) != 0) {
                return FALSE;
        }

        return TRUE;
}

gboolean cd_pause(struct cd *cd)
{
        if (cd->fd == -1) {
                return FALSE;
        }

        if (ioctl(cd->fd,CDROMPAUSE,NULL) != 0) {
                return FALSE;
        }

        return TRUE;
}

gboolean cd_resume(struct cd *cd)
{
        if (cd->fd == -1) {
                return FALSE;
        }

        if (ioctl(cd->fd,CDROMRESUME,NULL) != 0) {
                return FALSE;
        }

        return TRUE;
}

gboolean cd_stop(struct cd *cd)
{
        if (cd->fd == -1) {
                return FALSE;
        }

        if (ioctl(cd->fd,CDROMSTOP,NULL) != 0) {
                return FALSE;
        }

        return TRUE;
}

/* -1 for error, 0 for not playing, 1 for playing */
CDStatus cd_status(struct cd *cd)
{
        struct cdrom_subchnl sub_channel;

        if (cd->fd == -1) {
                return -1;
        }

        sub_channel.cdsc_format = CDROM_MSF;

        if (ioctl(cd->fd,CDROMSUBCHNL,&sub_channel) != 0) {
                return -1;
        }

        switch (sub_channel.cdsc_audiostatus) {
                case CDROM_AUDIO_COMPLETED:
                        return CD_COMPLETED;
                        break;
                case CDROM_AUDIO_PLAY:
                case CDROM_AUDIO_PAUSED:
                        return CD_PLAYING;
                        break;
                case CDROM_AUDIO_ERROR:
                default:
                        return CD_ERROR;
        }
}

gint cd_current_track(struct cd *cd)
{
        struct cdrom_subchnl sub_channel;

        if (cd->fd == -1) {
                return -1;
        }

        sub_channel.cdsc_format = CDROM_MSF;

        if (ioctl(cd->fd,CDROMSUBCHNL,&sub_channel) != 0) {
                return -1;
        }


        return sub_channel.cdsc_trk;
}

gboolean cd_close(struct cd *cd)
{
        if (cd->fd == -1) {
                return TRUE;
        }

        if (close(cd->fd) != 0) {
                return FALSE;
        }

        cd->fd = -1;

        return TRUE;
}