少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
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
/*
 * File utility functions.
 *
 * Author:
 *   Gonzalo Paniagua Javier (gonzalo@novell.com)
 *
 * (C) 2006 Novell, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining
 * a copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sublicense, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
 * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
 * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 */
 
#include <config.h>
 
#include <glib.h>
#include <stdio.h>
#include <string.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <errno.h>
 
static gpointer error_quark = "FileError";
 
gpointer
g_file_error_quark (void)
{
    return error_quark;
}
 
GFileError
g_file_error_from_errno (gint err_no)
{
    switch (err_no) {
    case EEXIST:
        return G_FILE_ERROR_EXIST;
    case EISDIR:
        return G_FILE_ERROR_ISDIR;
    case EACCES:
        return G_FILE_ERROR_ACCES;
    case ENAMETOOLONG:
        return G_FILE_ERROR_NAMETOOLONG;
    case ENOENT:
        return G_FILE_ERROR_NOENT;
    case ENOTDIR:
        return G_FILE_ERROR_NOTDIR;
    case ENXIO:
        return G_FILE_ERROR_NXIO;
    case ENODEV:
        return G_FILE_ERROR_NODEV;
    case EROFS:
        return G_FILE_ERROR_ROFS;
#ifdef ETXTBSY
    case ETXTBSY:
        return G_FILE_ERROR_TXTBSY;
#endif
    case EFAULT:
        return G_FILE_ERROR_FAULT;
#ifdef ELOOP
    case ELOOP:
        return G_FILE_ERROR_LOOP;
#endif
    case ENOSPC:
        return G_FILE_ERROR_NOSPC;
    case ENOMEM:
        return G_FILE_ERROR_NOMEM;
    case EMFILE:
        return G_FILE_ERROR_MFILE;
    case ENFILE:
        return G_FILE_ERROR_NFILE;
    case EBADF:
        return G_FILE_ERROR_BADF;
    case EINVAL:
        return G_FILE_ERROR_INVAL;
    case EPIPE:
        return G_FILE_ERROR_PIPE;
    case EAGAIN:
        return G_FILE_ERROR_AGAIN;
    case EINTR:
        return G_FILE_ERROR_INTR;
    case EIO:
        return G_FILE_ERROR_IO;
    case EPERM:
        return G_FILE_ERROR_PERM;
    case ENOSYS:
        return G_FILE_ERROR_NOSYS;
    default:
        return G_FILE_ERROR_FAILED;
    }
}
 
#ifdef G_OS_WIN32
#define TMP_FILE_FORMAT "%.*s%s.tmp"
#else
#define TMP_FILE_FORMAT "%.*s.%s~"
#endif
 
gboolean
g_file_set_contents (const gchar *filename, const gchar *contents, gssize length, GError **err)
{
    const char *name;
    char *path;
    FILE *fp;
    
    if (!(name = strrchr (filename, G_DIR_SEPARATOR)))
        name = filename;
    else
        name++;
    
    path = g_strdup_printf (TMP_FILE_FORMAT, name - filename, filename, name);
    if (!(fp = fopen (path, "wb"))) {
        g_set_error (err, G_FILE_ERROR, g_file_error_from_errno (errno), "%s", g_strerror (errno));
        g_free (path);
        return FALSE;
    }
    
    if (length < 0)
        length = strlen (contents);
    
    if (fwrite (contents, 1, length, fp) < length) {
        g_set_error (err, G_FILE_ERROR, g_file_error_from_errno (ferror (fp)), "%s", g_strerror (ferror (fp)));
        g_unlink (path);
        g_free (path);
        fclose (fp);
        
        return FALSE;
    }
    
    fclose (fp);
    
    if (g_rename (path, filename) != 0) {
        g_set_error (err, G_FILE_ERROR, g_file_error_from_errno (errno), "%s", g_strerror (errno));
        g_unlink (path);
        g_free (path);
        return FALSE;
    }
    
    g_free (path);
    
    return TRUE;
}