NeoMutt  2024-03-23-147-g885fbc
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
path_canon()

Canonicalise a Mailbox path. More...

+ Collaboration diagram for path_canon():

Functions

static int comp_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
int imap_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
int maildir_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
static int mbox_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
static int mh_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
static int nntp_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
static int nm_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 
static int pop_path_canon (struct Buffer *path)
 Canonicalise a Mailbox path - Implements MxOps::path_canon() -.
 

Detailed Description

Canonicalise a Mailbox path.

Parameters
pathPath to modify
Return values
0Success
-1Failure
Precondition
path is not NULL

Function Documentation

◆ comp_path_canon()

static int comp_path_canon ( struct Buffer path)
static

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 907 of file compress.c.

908{
909 mutt_path_canon(path, HomeDir, false);
910 return 0;
911}
char * HomeDir
User's home directory.
Definition: globals.c:38
bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir)
Create the canonical version of a path.
Definition: path.c:247
+ Here is the call graph for this function:

◆ imap_path_canon()

int imap_path_canon ( struct Buffer path)

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 2358 of file imap.c.

2359{
2360 struct Url *url = url_parse(buf_string(path));
2361 if (!url)
2362 return 0;
2363
2364 char tmp[PATH_MAX] = { 0 };
2365 char tmp2[PATH_MAX];
2366
2367 imap_fix_path('\0', url->path, tmp, sizeof(tmp));
2368 url->path = tmp;
2369 url_tostring(url, tmp2, sizeof(tmp2), U_NO_FLAGS);
2370 buf_strcpy(path, tmp2);
2371 url_free(&url);
2372
2373 return 0;
2374}
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition: buffer.c:394
static const char * buf_string(const struct Buffer *buf)
Convert a buffer to a const char * "string".
Definition: buffer.h:96
char * imap_fix_path(char delim, const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:679
#define PATH_MAX
Definition: mutt.h:42
A parsed URL proto://user:password@host:port/path?a=1&b=2
Definition: url.h:69
char * path
Path.
Definition: url.h:75
struct Url * url_parse(const char *src)
Fill in Url.
Definition: url.c:239
int url_tostring(struct Url *url, char *dest, size_t len, uint8_t flags)
Output the URL string for a given Url object.
Definition: url.c:423
void url_free(struct Url **ptr)
Free the contents of a URL.
Definition: url.c:124
#define U_NO_FLAGS
Definition: url.h:49
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ maildir_path_canon()

int maildir_path_canon ( struct Buffer path)

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 44 of file path.c.

45{
46 mutt_path_canon(path, HomeDir, true);
47 return 0;
48}
+ Here is the call graph for this function:

◆ mbox_path_canon()

static int mbox_path_canon ( struct Buffer path)
static

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 1605 of file mbox.c.

1606{
1607 mutt_path_canon(path, HomeDir, false);
1608 return 0;
1609}
+ Here is the call graph for this function:

◆ mh_path_canon()

static int mh_path_canon ( struct Buffer path)
static

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 1190 of file mh.c.

1191{
1192 mutt_path_canon(path, HomeDir, true);
1193 return 0;
1194}
+ Here is the call graph for this function:

◆ nntp_path_canon()

static int nntp_path_canon ( struct Buffer path)
static

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 2752 of file nntp.c.

2753{
2754 return 0;
2755}

◆ nm_path_canon()

static int nm_path_canon ( struct Buffer path)
static

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 2468 of file notmuch.c.

2469{
2470 return 0;
2471}

◆ pop_path_canon()

static int pop_path_canon ( struct Buffer path)
static

Canonicalise a Mailbox path - Implements MxOps::path_canon() -.

Definition at line 1171 of file pop.c.

1172{
1173 return 0;
1174}