summaryrefslogtreecommitdiff
path: root/base/gp_unifn.c
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2013-07-23 16:24:19 +0100
committerChris Liddell <chris.liddell@artifex.com>2015-07-20 18:21:17 +0100
commit6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a (patch)
tree5c2a1c671c1d4521f8a770d1e69e3d4342718030 /base/gp_unifn.c
parent7fd9e0be26e67c36f87733bc89ea07dc26d9f839 (diff)
downloadghostpdl-6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a.tar.gz
Commit of build_consolidation branch
Squashed into one commit (see branch for details of the evolution of the branch). This brings gpcl6 and gxps into the Ghostscript build system, and a shared set of graphics library object files for all the interpreters. Also, brings the same configuration options to the pcl and xps products as we have for Ghostscript.
Diffstat (limited to 'base/gp_unifn.c')
-rw-r--r--base/gp_unifn.c107
1 files changed, 107 insertions, 0 deletions
diff --git a/base/gp_unifn.c b/base/gp_unifn.c
new file mode 100644
index 000000000..379fe5505
--- /dev/null
+++ b/base/gp_unifn.c
@@ -0,0 +1,107 @@
+/* Copyright (C) 2001-2012 Artifex Software, Inc.
+ All Rights Reserved.
+
+ This software is provided AS-IS with no warranty, either express or
+ implied.
+
+ This software is distributed under license and may not be copied,
+ modified or distributed except as expressly authorized under the terms
+ of the license contained in the file LICENSE in this distribution.
+
+ Refer to licensing information at http://www.artifex.com or contact
+ Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
+ CA 94903, U.S.A., +1(415)492-9861, for further information.
+*/
+
+
+/* Unix-like file name syntax platform routines for Ghostscript */
+#include "gx.h"
+#include "gp.h"
+#include "gpmisc.h"
+#include "gsutil.h"
+
+/* Define the character used for separating file names in a list. */
+const char gp_file_name_list_separator = ':';
+
+/* Define the string to be concatenated with the file mode */
+/* for opening files without end-of-line conversion. */
+#if (defined(__MINGW32__) && __MINGW32__ == 1) || (defined(__CYGWIN__) && __CYGWIN__ == 1)
+const char gp_fmode_binary_suffix[] = "b";
+#else
+const char gp_fmode_binary_suffix[] = "";
+#endif
+
+
+/* Define the file modes for binary reading or writing. */
+#if (defined(__MINGW32__) && __MINGW32__ == 1) || (defined(__CYGWIN__) && __CYGWIN__ == 1)
+const char gp_fmode_rb[] = "rb";
+const char gp_fmode_wb[] = "wb";
+#else
+const char gp_fmode_rb[] = "r";
+const char gp_fmode_wb[] = "w";
+#endif
+
+/* -------------- Helpers for gp_file_name_combine_generic ------------- */
+
+uint gp_file_name_root(const char *fname, uint len)
+{ if (len > 0 && fname[0] == '/')
+ return 1;
+ return 0;
+}
+
+uint gs_file_name_check_separator(const char *fname, int len, const char *item)
+{ if (len > 0) {
+ if (fname[0] == '/')
+ return 1;
+ } else if (len < 0) {
+ if (fname[-1] == '/')
+ return 1;
+ }
+ return 0;
+}
+
+bool gp_file_name_is_parent(const char *fname, uint len)
+{ return len == 2 && fname[0] == '.' && fname[1] == '.';
+}
+
+bool gp_file_name_is_current(const char *fname, uint len)
+{ return len == 1 && fname[0] == '.';
+}
+
+const char *gp_file_name_separator(void)
+{ return "/";
+}
+
+const char *gp_file_name_directory_separator(void)
+{ return "/";
+}
+
+const char *gp_file_name_parent(void)
+{ return "..";
+}
+
+const char *gp_file_name_current(void)
+{ return ".";
+}
+
+bool gp_file_name_is_parent_allowed(void)
+{ return true;
+}
+
+bool gp_file_name_is_empty_item_meanful(void)
+{ return false;
+}
+
+gp_file_name_combine_result
+gp_file_name_combine(const char *prefix, uint plen, const char *fname, uint flen,
+ bool no_sibling, char *buffer, uint *blen)
+{
+ return gp_file_name_combine_generic(prefix, plen,
+ fname, flen, no_sibling, buffer, blen);
+}
+
+bool
+gp_file_name_good_char(unsigned char c)
+{
+ return c != 0 && c != '/' && c != '\\' && c != ':';
+}