2018-08-04 17:35:29 +00:00
|
|
|
/* Copyright (C) 2018 Curtis McEnroe <june@causal.agency>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-08-20 19:35:00 +00:00
|
|
|
#define SOURCE_URL "https://code.causal.agency/june/chatte"
|
2018-08-05 01:23:28 +00:00
|
|
|
|
2018-08-06 18:19:52 +00:00
|
|
|
#include <stdarg.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <stdbool.h>
|
2018-08-08 20:59:26 +00:00
|
|
|
#include <stdio.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <stdlib.h>
|
2018-09-02 04:09:36 +00:00
|
|
|
#include <time.h>
|
2018-08-04 17:35:29 +00:00
|
|
|
#include <wchar.h>
|
|
|
|
|
|
|
|
#define err(...) do { uiHide(); err(__VA_ARGS__); } while (0)
|
|
|
|
#define errx(...) do { uiHide(); errx(__VA_ARGS__); } while (0)
|
|
|
|
|
|
|
|
struct {
|
|
|
|
bool verbose;
|
|
|
|
char *nick;
|
|
|
|
char *user;
|
2018-08-10 04:01:35 +00:00
|
|
|
char *join;
|
2018-08-11 03:31:20 +00:00
|
|
|
} self;
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void selfNick(const char *nick);
|
|
|
|
void selfUser(const char *user);
|
|
|
|
void selfJoin(const char *join);
|
2018-08-10 17:36:00 +00:00
|
|
|
|
2018-09-10 23:18:26 +00:00
|
|
|
void eventWait(char *const argv[]);
|
|
|
|
void eventPipe(char *const argv[]);
|
2018-09-06 04:41:06 +00:00
|
|
|
void eventLoop(int ui, int irc);
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
struct Tag {
|
|
|
|
size_t id;
|
|
|
|
const char *name;
|
|
|
|
};
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-09-02 20:13:00 +00:00
|
|
|
enum { TagsLen = 256 };
|
|
|
|
const struct Tag TagNone;
|
|
|
|
const struct Tag TagStatus;
|
|
|
|
const struct Tag TagVerbose;
|
2018-08-13 03:55:12 +00:00
|
|
|
struct Tag tagFind(const char *name);
|
2018-08-11 03:31:20 +00:00
|
|
|
struct Tag tagFor(const char *name);
|
2018-08-04 17:35:29 +00:00
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
enum {
|
2018-09-02 20:13:00 +00:00
|
|
|
IRCWhite,
|
|
|
|
IRCBlack,
|
|
|
|
IRCBlue,
|
|
|
|
IRCGreen,
|
|
|
|
IRCRed,
|
|
|
|
IRCBrown,
|
|
|
|
IRCMagenta,
|
|
|
|
IRCOrange,
|
|
|
|
IRCYellow,
|
|
|
|
IRCLightGreen,
|
|
|
|
IRCCyan,
|
|
|
|
IRCLightCyan,
|
|
|
|
IRCLightBlue,
|
|
|
|
IRCPink,
|
|
|
|
IRCGray,
|
|
|
|
IRCLightGray,
|
2018-08-11 23:30:30 +00:00
|
|
|
};
|
2018-08-10 04:01:35 +00:00
|
|
|
enum {
|
2018-09-02 20:13:00 +00:00
|
|
|
IRCBold = 002,
|
|
|
|
IRCColor = 003,
|
|
|
|
IRCReverse = 026,
|
|
|
|
IRCReset = 017,
|
|
|
|
IRCItalic = 035,
|
|
|
|
IRCUnderline = 037,
|
2018-08-10 04:01:35 +00:00
|
|
|
};
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void handle(char *line);
|
|
|
|
void input(struct Tag tag, char *line);
|
|
|
|
void inputTab(void);
|
|
|
|
|
|
|
|
int ircConnect(
|
|
|
|
const char *host, const char *port, const char *pass, const char *webPass
|
|
|
|
);
|
|
|
|
void ircRead(void);
|
|
|
|
void ircWrite(const char *ptr, size_t len);
|
|
|
|
void ircFmt(const char *format, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
|
2018-08-04 17:35:29 +00:00
|
|
|
void uiInit(void);
|
|
|
|
void uiHide(void);
|
2018-08-09 04:24:49 +00:00
|
|
|
void uiExit(void);
|
2018-08-04 17:35:29 +00:00
|
|
|
void uiDraw(void);
|
|
|
|
void uiRead(void);
|
2018-08-17 18:00:08 +00:00
|
|
|
|
2018-08-11 23:30:30 +00:00
|
|
|
void uiViewTag(struct Tag tag);
|
|
|
|
void uiViewNum(int num);
|
2018-08-13 17:49:03 +00:00
|
|
|
void uiCloseTag(struct Tag tag);
|
2018-08-17 18:00:08 +00:00
|
|
|
|
|
|
|
enum UIHeat {
|
2018-09-02 20:13:00 +00:00
|
|
|
UICold,
|
|
|
|
UIWarm,
|
|
|
|
UIHot,
|
2018-08-17 18:00:08 +00:00
|
|
|
};
|
2018-08-11 03:31:20 +00:00
|
|
|
void uiTopic(struct Tag tag, const char *topic);
|
2018-08-17 18:00:08 +00:00
|
|
|
void uiLog(struct Tag tag, enum UIHeat heat, const wchar_t *line);
|
|
|
|
void uiFmt(struct Tag tag, enum UIHeat heat, const wchar_t *format, ...);
|
2018-08-11 03:31:20 +00:00
|
|
|
|
2018-08-11 19:49:39 +00:00
|
|
|
enum TermMode {
|
2018-09-02 20:13:00 +00:00
|
|
|
TermFocus,
|
|
|
|
TermPaste,
|
2018-08-11 19:49:39 +00:00
|
|
|
};
|
|
|
|
enum TermEvent {
|
2018-09-02 20:13:00 +00:00
|
|
|
TermNone,
|
|
|
|
TermFocusIn,
|
|
|
|
TermFocusOut,
|
|
|
|
TermPasteStart,
|
|
|
|
TermPasteEnd,
|
2018-08-11 19:49:39 +00:00
|
|
|
};
|
2018-08-14 02:54:02 +00:00
|
|
|
void termInit(void);
|
|
|
|
void termTitle(const char *title);
|
2018-08-11 19:49:39 +00:00
|
|
|
void termMode(enum TermMode mode, bool set);
|
|
|
|
enum TermEvent termEvent(char ch);
|
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
enum Edit {
|
2018-09-02 20:13:00 +00:00
|
|
|
EditLeft,
|
|
|
|
EditRight,
|
|
|
|
EditHome,
|
|
|
|
EditEnd,
|
|
|
|
EditBackWord,
|
|
|
|
EditForeWord,
|
|
|
|
EditInsert,
|
|
|
|
EditBackspace,
|
|
|
|
EditDelete,
|
|
|
|
EditKillBackWord,
|
|
|
|
EditKillForeWord,
|
|
|
|
EditKillLine,
|
|
|
|
EditComplete,
|
|
|
|
EditEnter,
|
2018-08-11 03:31:20 +00:00
|
|
|
};
|
|
|
|
void edit(struct Tag tag, enum Edit op, wchar_t ch);
|
2018-08-08 20:59:26 +00:00
|
|
|
const wchar_t *editHead(void);
|
|
|
|
const wchar_t *editTail(void);
|
2018-08-09 04:24:49 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabTouch(struct Tag tag, const char *word);
|
2018-08-20 23:11:44 +00:00
|
|
|
void tabAdd(struct Tag tag, const char *word);
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabRemove(struct Tag tag, const char *word);
|
2018-08-11 23:30:30 +00:00
|
|
|
void tabReplace(struct Tag tag, const char *prev, const char *next);
|
2018-08-11 03:31:20 +00:00
|
|
|
void tabClear(struct Tag tag);
|
2018-08-11 23:30:30 +00:00
|
|
|
struct Tag tabTag(const char *word);
|
2018-08-11 03:31:20 +00:00
|
|
|
const char *tabNext(struct Tag tag, const char *prefix);
|
2018-08-08 02:40:05 +00:00
|
|
|
void tabAccept(void);
|
|
|
|
void tabReject(void);
|
2018-08-07 18:58:32 +00:00
|
|
|
|
2018-08-11 03:31:20 +00:00
|
|
|
void urlScan(struct Tag tag, const char *str);
|
|
|
|
void urlList(struct Tag tag);
|
2018-09-11 18:36:30 +00:00
|
|
|
void urlOpenMatch(struct Tag tag, const char *substr);
|
|
|
|
void urlOpenRange(struct Tag tag, size_t at, size_t to);
|
2018-08-11 03:31:20 +00:00
|
|
|
|
2018-08-18 01:50:45 +00:00
|
|
|
void logOpen(const char *path);
|
|
|
|
void logFmt(
|
|
|
|
struct Tag tag, const time_t *ts, const char *format, ...
|
|
|
|
) __attribute__((format(printf, 3, 4)));
|
|
|
|
|
2018-08-20 22:41:23 +00:00
|
|
|
wchar_t *wcsnchr(const wchar_t *wcs, size_t len, wchar_t chr);
|
|
|
|
wchar_t *wcsnrchr(const wchar_t *wcs, size_t len, wchar_t chr);
|
2018-08-07 20:24:14 +00:00
|
|
|
wchar_t *ambstowcs(const char *src);
|
|
|
|
char *awcstombs(const wchar_t *src);
|
2018-08-20 22:41:23 +00:00
|
|
|
char *awcsntombs(const wchar_t *src, size_t nwc);
|
2018-08-06 18:19:52 +00:00
|
|
|
int vaswprintf(wchar_t **ret, const wchar_t *format, va_list ap);
|
2018-09-02 05:03:12 +00:00
|
|
|
int aswprintf(wchar_t **ret, const wchar_t *format, ...);
|
2018-08-11 03:31:20 +00:00
|
|
|
|
|
|
|
// HACK: clang won't check wchar_t *format strings.
|
|
|
|
#ifdef NDEBUG
|
2018-08-17 18:00:08 +00:00
|
|
|
#define uiFmt(tag, heat, format, ...) uiFmt(tag, heat, L##format, __VA_ARGS__)
|
2018-08-11 03:31:20 +00:00
|
|
|
#else
|
2018-08-17 18:00:08 +00:00
|
|
|
#define uiFmt(tag, heat, format, ...) do { \
|
2018-08-11 03:31:20 +00:00
|
|
|
snprintf(NULL, 0, format, __VA_ARGS__); \
|
2018-08-17 18:00:08 +00:00
|
|
|
uiFmt(tag, heat, L##format, __VA_ARGS__); \
|
2018-08-11 03:31:20 +00:00
|
|
|
} while(0)
|
|
|
|
#endif
|