NeoMutt  2024-10-02-37-gfa9146
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:37
bool mutt_path_canon(struct Buffer *path, const char *homedir, bool is_dir)
Create the canonical version of a path.
Definition: path.c:248
+ 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 2359 of file imap.c.

2360{
2361 struct Url *url = url_parse(buf_string(path));
2362 if (!url)
2363 return 0;
2364
2365 char tmp[PATH_MAX] = { 0 };
2366 char tmp2[PATH_MAX] = { 0 };
2367 if (url->path)
2368 {
2369 struct ImapAccountData *adata = NULL;
2370 if (imap_adata_find(buf_string(path), &adata, NULL) == 0)
2371 {
2372 imap_fix_path_with_delim(adata->delim, url->path, tmp, sizeof(tmp));
2373 }
2374 else
2375 {
2376 imap_fix_path(url->path, tmp, sizeof(tmp));
2377 }
2378 url->path = tmp;
2379 }
2380 url_tostring(url, tmp2, sizeof(tmp2), U_NO_FLAGS);
2381 buf_strcpy(path, tmp2);
2382 url_free(&url);
2383
2384 return 0;
2385}
size_t buf_strcpy(struct Buffer *buf, const char *s)
Copy a string into a Buffer.
Definition: buffer.c:395
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(const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:682
char * imap_fix_path_with_delim(char delim, const char *mailbox, char *path, size_t plen)
Fix up the imap path.
Definition: util.c:714
int imap_adata_find(const char *path, struct ImapAccountData **adata, struct ImapMboxData **mdata)
Find the Account data for this path.
Definition: util.c:73
#define PATH_MAX
Definition: mutt.h:42
void * adata
Private data (for Mailbox backends)
Definition: account.h:42
IMAP-specific Account data -.
Definition: adata.h:40
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
void url_free(struct Url **ptr)
Free the contents of a URL.
Definition: url.c:124
int url_tostring(const struct Url *url, char *dest, size_t len, uint8_t flags)
Output the URL string for a given Url object.
Definition: url.c:423
#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 1607 of file mbox.c.

1608{
1609 mutt_path_canon(path, HomeDir, false);
1610 return 0;
1611}
+ 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 2800 of file nntp.c.

2801{
2802 return 0;
2803}

◆ 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}