mirror of https://github.com/bqv/weechat-xmpp
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
C++
51 lines
1.2 KiB
C++
3 years ago
|
// This Source Code Form is subject to the terms of the Mozilla Public
|
||
|
// License, version 2.0. If a copy of the MPL was not distributed with this
|
||
|
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||
|
|
||
3 years ago
|
#include <stdio.h>
|
||
3 years ago
|
#include <stdlib.h>
|
||
3 years ago
|
#include <string.h>
|
||
3 years ago
|
#include <strophe.h>
|
||
3 years ago
|
#include <weechat/weechat-plugin.h>
|
||
|
|
||
3 years ago
|
#include "plugin.hh"
|
||
3 years ago
|
#include "util.hh"
|
||
3 years ago
|
|
||
|
int char_cmp(const void *p1, const void *p2)
|
||
|
{
|
||
|
return *(const char *)p1 == *(const char *)p2;
|
||
|
}
|
||
3 years ago
|
|
||
|
char *exec(const char *command)
|
||
|
{
|
||
|
// use hook_process instead!
|
||
3 years ago
|
char buffer[128];
|
||
|
char **result = weechat_string_dyn_alloc(256);
|
||
|
|
||
|
// Open pipe to file
|
||
|
FILE* pipe = popen(command, "r");
|
||
|
if (!pipe) {
|
||
|
return (char*)strdup("popen failed!");
|
||
|
}
|
||
|
|
||
|
// read till end of process:
|
||
|
while (!feof(pipe)) {
|
||
|
|
||
|
// use buffer to read and add to result
|
||
|
if (fgets(buffer, 128, pipe) != NULL)
|
||
|
weechat_string_dyn_concat(result, buffer, -1);
|
||
|
}
|
||
|
|
||
|
pclose(pipe);
|
||
|
weechat_string_dyn_free(result, 0);
|
||
|
return *result;
|
||
3 years ago
|
}
|
||
|
|
||
|
char *stanza_xml(xmpp_stanza_t *stanza)
|
||
|
{
|
||
|
char *result;
|
||
|
size_t len;
|
||
|
xmpp_stanza_to_text(stanza, &result, &len);
|
||
|
return result;
|
||
|
}
|