2012-10-21 15:02:20 -04:00
|
|
|
/*
|
2012-05-19 16:56:23 -04:00
|
|
|
* common.h
|
2019-11-13 06:11:05 -05:00
|
|
|
* vim: expandtab:ts=4:sts=4:sw=4
|
2012-05-19 16:56:23 -04:00
|
|
|
*
|
2019-01-22 05:31:45 -05:00
|
|
|
* Copyright (C) 2012 - 2019 James Booth <boothj5@gmail.com>
|
2012-10-21 15:02:20 -04:00
|
|
|
*
|
2012-05-19 16:56:23 -04:00
|
|
|
* This file is part of Profanity.
|
|
|
|
*
|
|
|
|
* Profanity 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Profanity 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
|
2016-07-23 20:14:49 -04:00
|
|
|
* along with Profanity. If not, see <https://www.gnu.org/licenses/>.
|
2012-05-19 16:56:23 -04:00
|
|
|
*
|
2014-08-24 15:57:39 -04:00
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link the code of portions of this program with the OpenSSL library under
|
|
|
|
* certain conditions as described in each individual source file, and
|
|
|
|
* distribute linked combinations including the two.
|
|
|
|
*
|
|
|
|
* You must obey the GNU General Public License in all respects for all of the
|
|
|
|
* code used other than OpenSSL. If you modify file(s) with this exception, you
|
|
|
|
* may extend this exception to your version of the file(s), but you are not
|
|
|
|
* obligated to do so. If you do not wish to do so, delete this exception
|
|
|
|
* statement from your version. If you delete this exception statement from all
|
|
|
|
* source files in the program, then also delete it here.
|
|
|
|
*
|
2012-05-19 16:56:23 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef COMMON_H
|
|
|
|
#define COMMON_H
|
|
|
|
|
2012-11-17 21:31:32 -05:00
|
|
|
#include <stdio.h>
|
2015-01-18 17:55:51 -05:00
|
|
|
#include <wchar.h>
|
|
|
|
|
2012-05-19 16:56:23 -04:00
|
|
|
#include <glib.h>
|
|
|
|
|
2012-06-28 19:47:14 -04:00
|
|
|
#ifndef NOTIFY_CHECK_VERSION
|
|
|
|
#define notify_notification_new(summary, body, icon) notify_notification_new(summary, body, icon, NULL)
|
|
|
|
#endif
|
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
|
2012-08-10 18:18:02 -04:00
|
|
|
|
2015-01-07 22:37:35 -05:00
|
|
|
// assume malloc stores at most 8 bytes for size of allocated memory
|
|
|
|
// and page size is at least 4KB
|
|
|
|
#define READ_BUF_SIZE 4088
|
|
|
|
|
2013-01-12 20:43:18 -05:00
|
|
|
#define FREE_SET_NULL(resource) \
|
2020-07-07 08:18:57 -04:00
|
|
|
do { \
|
|
|
|
free(resource); \
|
|
|
|
resource = NULL; \
|
|
|
|
} while (0)
|
2013-01-12 20:43:18 -05:00
|
|
|
|
2013-01-22 19:21:05 -05:00
|
|
|
#define GFREE_SET_NULL(resource) \
|
2020-07-07 08:18:57 -04:00
|
|
|
do { \
|
|
|
|
g_free(resource); \
|
|
|
|
resource = NULL; \
|
|
|
|
} while (0)
|
2013-01-22 19:21:05 -05:00
|
|
|
|
2013-01-30 19:01:38 -05:00
|
|
|
typedef enum {
|
2013-02-10 12:13:19 -05:00
|
|
|
CONTACT_OFFLINE,
|
|
|
|
CONTACT_ONLINE,
|
|
|
|
CONTACT_AWAY,
|
|
|
|
CONTACT_DND,
|
|
|
|
CONTACT_CHAT,
|
|
|
|
CONTACT_XA
|
|
|
|
} contact_presence_t;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
RESOURCE_ONLINE,
|
|
|
|
RESOURCE_AWAY,
|
|
|
|
RESOURCE_DND,
|
|
|
|
RESOURCE_CHAT,
|
|
|
|
RESOURCE_XA
|
|
|
|
} resource_presence_t;
|
2013-01-30 19:01:38 -05:00
|
|
|
|
2022-03-13 07:02:59 -04:00
|
|
|
gboolean create_dir(const char* name);
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean copy_file(const char* const src, const char* const target, const gboolean overwrite_existing);
|
|
|
|
char* str_replace(const char* string, const char* substr, const char* replacement);
|
|
|
|
gboolean strtoi_range(char* str, int* saveptr, int min, int max, char** err_msg);
|
|
|
|
int utf8_display_len(const char* const str);
|
2016-07-24 12:02:09 -04:00
|
|
|
|
2013-01-28 15:07:25 -05:00
|
|
|
char* release_get_latest(void);
|
2020-07-07 08:18:57 -04:00
|
|
|
gboolean release_is_new(char* found_version);
|
2012-05-19 16:56:23 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
char* get_file_or_linked(char* loc, char* basedir);
|
|
|
|
char* strip_arg_quotes(const char* const input);
|
2015-10-09 05:50:21 -04:00
|
|
|
gboolean is_notify_enabled(void);
|
2014-10-26 16:43:05 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
GSList* prof_occurrences(const char* const needle, const char* const haystack, int offset, gboolean whole_word,
|
|
|
|
GSList** result);
|
|
|
|
GSList* get_mentions(gboolean whole_word, gboolean case_sensitive, const char* const message, const char* const nick);
|
2016-04-03 17:30:24 -04:00
|
|
|
|
2020-07-07 08:18:57 -04:00
|
|
|
int is_regular_file(const char* path);
|
|
|
|
int is_dir(const char* path);
|
|
|
|
void get_file_paths_recursive(const char* directory, GSList** contents);
|
2017-02-05 16:09:03 -05:00
|
|
|
|
2019-10-16 04:39:35 -04:00
|
|
|
char* get_random_string(int length);
|
|
|
|
|
2022-09-26 07:29:14 -04:00
|
|
|
gboolean call_external(gchar** argv);
|
2020-12-03 10:43:07 -05:00
|
|
|
gchar** format_call_external_argv(const char* template, const char* url, const char* filename);
|
2020-05-20 04:36:02 -04:00
|
|
|
|
2020-12-04 10:13:13 -05:00
|
|
|
gchar* unique_filename_from_url(const char* url, const char* path);
|
2020-12-11 09:51:01 -05:00
|
|
|
gchar* get_expanded_path(const char* path);
|
2020-12-04 10:13:13 -05:00
|
|
|
|
2012-05-19 16:56:23 -04:00
|
|
|
#endif
|