2002-05-02 18:15:46 +04:00
|
|
|
/*
|
2005-02-25 00:55:12 +03:00
|
|
|
* "$Id$"
|
2002-05-02 18:15:46 +04:00
|
|
|
*
|
|
|
|
* Filename header file for the Fast Light Tool Kit (FLTK).
|
|
|
|
*
|
2010-11-29 00:06:39 +03:00
|
|
|
* Copyright 1998-2010 by Bill Spitzak and others.
|
2002-05-02 18:15:46 +04:00
|
|
|
*
|
2011-07-19 08:49:30 +04:00
|
|
|
* This library is free software. Distribution and use rights are outlined in
|
|
|
|
* the file "COPYING" which should have been included with this file. If this
|
|
|
|
* file is missing or damaged, see the license at:
|
2002-05-02 18:15:46 +04:00
|
|
|
*
|
2011-07-19 08:49:30 +04:00
|
|
|
* http://www.fltk.org/COPYING.php
|
2002-05-02 18:15:46 +04:00
|
|
|
*
|
2005-04-16 04:13:17 +04:00
|
|
|
* Please report all bugs and problems on the following page:
|
|
|
|
*
|
|
|
|
* http://www.fltk.org/str.php
|
2002-05-02 18:15:46 +04:00
|
|
|
*/
|
2012-10-19 15:23:51 +04:00
|
|
|
/** \file
|
|
|
|
File names and URI utility functions.
|
|
|
|
*/
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2010-10-01 04:30:08 +04:00
|
|
|
/* Xcode on OS X includes files by recursing down into directories.
|
|
|
|
* This code catches the cycle and directly includes the required file.
|
|
|
|
*/
|
2010-12-20 16:35:43 +03:00
|
|
|
#ifdef fl_dirent_h_cyclic_include
|
2010-04-15 00:17:44 +04:00
|
|
|
# include "/usr/include/dirent.h"
|
|
|
|
#endif
|
|
|
|
|
1999-02-17 01:00:04 +03:00
|
|
|
#ifndef FL_FILENAME_H
|
2001-11-29 03:24:43 +03:00
|
|
|
# define FL_FILENAME_H
|
1999-02-17 01:00:04 +03:00
|
|
|
|
2001-08-04 16:21:34 +04:00
|
|
|
# include "Fl_Export.H"
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2010-12-20 16:35:43 +03:00
|
|
|
/** \addtogroup filenames File names and URI utility functions
|
2010-12-08 00:47:57 +03:00
|
|
|
File names and URI functions defined in <FL/filename.H>
|
2009-01-20 14:10:29 +03:00
|
|
|
@{ */
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2010-12-20 00:20:10 +03:00
|
|
|
# define FL_PATH_MAX 2048 /**< all path buffers should use this length */
|
2010-12-20 16:35:43 +03:00
|
|
|
/** Gets the file name from a path.
|
2010-01-01 21:30:49 +03:00
|
|
|
Similar to basename(3), exceptions shown below.
|
|
|
|
\code
|
|
|
|
#include <FL/filename.H>
|
|
|
|
[..]
|
|
|
|
const char *out;
|
|
|
|
out = fl_filename_name("/usr/lib"); // out="lib"
|
|
|
|
out = fl_filename_name("/usr/"); // out="" (basename(3) returns "usr" instead)
|
|
|
|
out = fl_filename_name("/usr"); // out="usr"
|
|
|
|
out = fl_filename_name("/"); // out="" (basename(3) returns "/" instead)
|
|
|
|
out = fl_filename_name("."); // out="."
|
|
|
|
out = fl_filename_name(".."); // out=".."
|
|
|
|
\endcode
|
|
|
|
\return a pointer to the char after the last slash, or to \p filename if there is none.
|
|
|
|
*/
|
2009-01-20 14:10:29 +03:00
|
|
|
FL_EXPORT const char *fl_filename_name(const char * filename);
|
2010-01-01 21:30:49 +03:00
|
|
|
FL_EXPORT const char *fl_filename_ext(const char *buf);
|
2002-05-02 18:15:46 +04:00
|
|
|
FL_EXPORT char *fl_filename_setext(char *to, int tolen, const char *ext);
|
|
|
|
FL_EXPORT int fl_filename_expand(char *to, int tolen, const char *from);
|
|
|
|
FL_EXPORT int fl_filename_absolute(char *to, int tolen, const char *from);
|
|
|
|
FL_EXPORT int fl_filename_relative(char *to, int tolen, const char *from);
|
|
|
|
FL_EXPORT int fl_filename_match(const char *name, const char *pattern);
|
2002-03-26 00:08:42 +03:00
|
|
|
FL_EXPORT int fl_filename_isdir(const char *name);
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2009-01-20 14:10:29 +03:00
|
|
|
# if defined(__cplusplus) && !defined(FL_DOXYGEN)
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
|
|
|
* Under WIN32, we include filename.H from numericsort.c; this should probably change...
|
|
|
|
*/
|
|
|
|
|
2002-03-26 00:08:42 +03:00
|
|
|
inline char *fl_filename_setext(char *to, const char *ext) { return fl_filename_setext(to, FL_PATH_MAX, ext); }
|
|
|
|
inline int fl_filename_expand(char *to, const char *from) { return fl_filename_expand(to, FL_PATH_MAX, from); }
|
|
|
|
inline int fl_filename_absolute(char *to, const char *from) { return fl_filename_absolute(to, FL_PATH_MAX, from); }
|
2010-12-20 16:35:43 +03:00
|
|
|
FL_EXPORT int fl_filename_relative(char *to, int tolen, const char *from, const char *cwd);
|
2002-03-26 00:08:42 +03:00
|
|
|
inline int fl_filename_relative(char *to, const char *from) { return fl_filename_relative(to, FL_PATH_MAX, from); }
|
2002-05-02 18:15:46 +04:00
|
|
|
# endif /* __cplusplus */
|
2001-11-29 03:24:43 +03:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2012-04-23 13:47:04 +04:00
|
|
|
# if defined(WIN32) && !defined(__MINGW32__) && !defined(__CYGWIN__) && !defined(__WATCOMC__)
|
1998-10-06 22:21:25 +04:00
|
|
|
|
|
|
|
struct dirent {char d_name[1];};
|
|
|
|
|
2004-10-19 00:29:58 +04:00
|
|
|
# elif defined(__WATCOMC__)
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <direct.h>
|
|
|
|
|
2016-01-04 01:54:29 +03:00
|
|
|
# elif defined(FL_PORTING)
|
|
|
|
# pragma message "FL_PORTING: insert the equivalent to dirent.h on your system"
|
2016-01-05 02:09:32 +03:00
|
|
|
# include <dirent.h>
|
2001-11-29 03:24:43 +03:00
|
|
|
# else
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
|
|
|
* WARNING: on some systems (very few nowadays?) <dirent.h> may not exist.
|
|
|
|
* The correct information is in one of these files:
|
|
|
|
*
|
|
|
|
* #include <sys/ndir.h>
|
|
|
|
* #include <sys/dir.h>
|
|
|
|
* #include <ndir.h>
|
|
|
|
*
|
|
|
|
* plus you must do the following #define:
|
|
|
|
*
|
|
|
|
* #define dirent direct
|
|
|
|
*
|
|
|
|
* It would be best to create a <dirent.h> file that does this...
|
|
|
|
*/
|
2001-11-29 03:24:43 +03:00
|
|
|
# include <sys/types.h>
|
2010-12-20 16:35:43 +03:00
|
|
|
# define fl_dirent_h_cyclic_include
|
2001-11-29 03:24:43 +03:00
|
|
|
# include <dirent.h>
|
2010-12-20 16:35:43 +03:00
|
|
|
# undef fl_dirent_h_cyclic_include
|
2001-11-29 03:24:43 +03:00
|
|
|
# endif
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2009-01-20 14:10:29 +03:00
|
|
|
# if defined (__cplusplus)
|
2002-05-02 15:11:01 +04:00
|
|
|
extern "C" {
|
2002-05-02 18:15:46 +04:00
|
|
|
# endif /* __cplusplus */
|
2002-05-02 15:11:01 +04:00
|
|
|
|
2009-01-20 14:10:29 +03:00
|
|
|
# if !defined(FL_DOXYGEN)
|
2002-05-02 18:15:46 +04:00
|
|
|
FL_EXPORT int fl_alphasort(struct dirent **, struct dirent **);
|
|
|
|
FL_EXPORT int fl_casealphasort(struct dirent **, struct dirent **);
|
|
|
|
FL_EXPORT int fl_casenumericsort(struct dirent **, struct dirent **);
|
|
|
|
FL_EXPORT int fl_numericsort(struct dirent **, struct dirent **);
|
2009-01-20 14:10:29 +03:00
|
|
|
# endif
|
2002-05-02 18:15:46 +04:00
|
|
|
|
2009-03-14 05:11:31 +03:00
|
|
|
typedef int (Fl_File_Sort_F)(struct dirent **, struct dirent **); /**< File sorting function. \see fl_filename_list() */
|
2002-05-02 18:15:46 +04:00
|
|
|
|
2009-01-20 14:10:29 +03:00
|
|
|
# if defined(__cplusplus)
|
2002-05-02 15:11:01 +04:00
|
|
|
}
|
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
|
|
|
* Portable "scandir" function. Ugly but necessary...
|
|
|
|
*/
|
|
|
|
|
2002-07-08 19:20:57 +04:00
|
|
|
FL_EXPORT int fl_filename_list(const char *d, struct dirent ***l,
|
|
|
|
Fl_File_Sort_F *s = fl_numericsort);
|
2010-12-20 02:24:06 +03:00
|
|
|
FL_EXPORT void fl_filename_free_list(struct dirent ***l, int n);
|
2007-01-04 17:53:54 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic function to open a Uniform Resource Identifier (URI) using a
|
|
|
|
* system-defined program (added in FLTK 1.1.8)
|
|
|
|
*/
|
|
|
|
|
|
|
|
FL_EXPORT int fl_open_uri(const char *uri, char *msg = (char *)0,
|
|
|
|
int msglen = 0);
|
2007-01-23 18:02:00 +03:00
|
|
|
|
2012-06-10 13:38:29 +04:00
|
|
|
FL_EXPORT void fl_decode_uri(char *uri);
|
|
|
|
|
2009-01-20 14:10:29 +03:00
|
|
|
# ifndef FL_DOXYGEN
|
2007-01-23 18:02:00 +03:00
|
|
|
/*
|
|
|
|
* _fl_filename_isdir_quick() is a private function that checks for a
|
|
|
|
* trailing slash and assumes that the passed name is a directory if
|
|
|
|
* it finds one. This function is used by Fl_File_Browser and
|
|
|
|
* Fl_File_Chooser to avoid extra stat() calls, but is not supported
|
|
|
|
* outside of FLTK...
|
|
|
|
*/
|
|
|
|
int _fl_filename_isdir_quick(const char *name);
|
2009-01-20 14:10:29 +03:00
|
|
|
# endif
|
2007-01-23 18:02:00 +03:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
# endif /* __cplusplus */
|
2002-05-02 15:11:01 +04:00
|
|
|
|
2002-06-26 16:03:28 +04:00
|
|
|
/*
|
|
|
|
* FLTK 1.0.x compatibility definitions...
|
|
|
|
*/
|
|
|
|
|
2002-06-24 19:22:57 +04:00
|
|
|
# ifdef FLTK_1_0_COMPAT
|
|
|
|
# define filename_absolute fl_filename_absolute
|
|
|
|
# define filename_expand fl_filename_expand
|
|
|
|
# define filename_ext fl_filename_ext
|
|
|
|
# define filename_isdir fl_filename_isdir
|
|
|
|
# define filename_list fl_filename_list
|
|
|
|
# define filename_match fl_filename_match
|
|
|
|
# define filename_name fl_filename_name
|
|
|
|
# define filename_relative fl_filename_relative
|
2002-12-20 00:34:26 +03:00
|
|
|
# define filename_setext fl_filename_setext
|
2002-06-24 19:22:57 +04:00
|
|
|
# define numericsort fl_numericsort
|
2002-06-26 16:03:28 +04:00
|
|
|
# endif /* FLTK_1_0_COMPAT */
|
2002-06-24 19:22:57 +04:00
|
|
|
|
1998-10-06 22:21:25 +04:00
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
#endif /* FL_FILENAME_H */
|
1998-10-20 01:39:29 +04:00
|
|
|
|
2009-01-20 14:10:29 +03:00
|
|
|
/** @} */
|
|
|
|
|
2002-05-02 18:15:46 +04:00
|
|
|
/*
|
2005-02-25 00:55:12 +03:00
|
|
|
* End of "$Id$".
|
2002-05-02 18:15:46 +04:00
|
|
|
*/
|