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
|
/*
irssi-python
Copyright (C) 2006 Christopher Davis
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
#include <string.h>
#include "pyirssi.h"
#include "pyutils.h"
#include "settings.h"
#include "servers.h"
/* copy paste from perl bindings */
void py_command(const char *cmd, SERVER_REC *server, WI_ITEM_REC *item)
{
const char *cmdchars;
char *sendcmd = (char *) cmd;
if (*cmd == '\0')
return;
cmdchars = settings_get_str("cmdchars");
if (strchr(cmdchars, *cmd) == NULL) {
/* no command char - let's put it there.. */
sendcmd = g_strdup_printf("%c%s", *cmdchars, cmd);
}
signal_emit("send command", 3, sendcmd, server, item);
if (sendcmd != cmd) g_free(sendcmd);
}
/* return the file extension for a file, or empty string
don't free result */
char *file_get_ext(const char *file)
{
const char *dot = NULL;
while (*file)
{
if (*file == '.')
dot = file;
file++;
}
if (dot)
return (char *) dot + 1;
return (char *) file;
}
int file_has_ext(const char *file, const char *ext)
{
const char *fext = file_get_ext(file);
return !strcmp(fext, ext);
}
/* return whats in the braces -> /path/to/{filename}.py
result must be freed */
char *file_get_filename(const char *path)
{
const char *begin;
const char *end;
char *name;
size_t len;
begin = strrchr(path, '/');
if (!begin)
begin = path;
else
begin++;
end = strrchr(begin, '.');
if (end != NULL && end > begin)
len = end - begin;
else
len = strlen(begin);
name = g_strnfill(len, 0);
strncpy(name, begin, len);
return name;
}
|