synctex_parser_utils.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. Copyright (c) 2008-2017 jerome DOT laurens AT u-bourgogne DOT fr
  3. This file is part of the __SyncTeX__ package.
  4. [//]: # (Latest Revision: Fri Jul 14 16:20:41 UTC 2017)
  5. [//]: # (Version: 1.21)
  6. See `synctex_parser_readme.md` for more details
  7. ## License
  8. Permission is hereby granted, free of charge, to any person
  9. obtaining a copy of this software and associated documentation
  10. files (the "Software"), to deal in the Software without
  11. restriction, including without limitation the rights to use,
  12. copy, modify, merge, publish, distribute, sublicense, and/or sell
  13. copies of the Software, and to permit persons to whom the
  14. Software is furnished to do so, subject to the following
  15. conditions:
  16. The above copyright notice and this permission notice shall be
  17. included in all copies or substantial portions of the Software.
  18. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  19. EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
  20. OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  21. NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
  22. HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
  23. WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  24. FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  25. OTHER DEALINGS IN THE SOFTWARE
  26. Except as contained in this notice, the name of the copyright holder
  27. shall not be used in advertising or otherwise to promote the sale,
  28. use or other dealings in this Software without prior written
  29. authorization from the copyright holder.
  30. */
  31. #ifndef SYNCTEX_PARSER_UTILS_H
  32. #define SYNCTEX_PARSER_UTILS_H
  33. /* The utilities declared here are subject to conditional implementation.
  34. * All the operating system special stuff goes here.
  35. * The problem mainly comes from file name management: path separator, encoding...
  36. */
  37. #include "synctex_version.h"
  38. typedef int synctex_bool_t;
  39. # define synctex_YES (0==0)
  40. # define synctex_NO (0==1)
  41. # define synctex_ADD_QUOTES -1
  42. # define synctex_COMPRESS -1
  43. # define synctex_DONT_ADD_QUOTES 0
  44. # define synctex_DONT_COMPRESS 0
  45. #ifndef __SYNCTEX_PARSER_UTILS__
  46. # define __SYNCTEX_PARSER_UTILS__
  47. #include <stdlib.h>
  48. #ifdef __cplusplus
  49. extern "C" {
  50. #endif
  51. # if defined(_WIN32) || defined(__OS2__)
  52. # define SYNCTEX_CASE_SENSITIVE_PATH 0
  53. # define SYNCTEX_IS_PATH_SEPARATOR(c) ('/' == c || '\\' == c)
  54. # else
  55. # define SYNCTEX_CASE_SENSITIVE_PATH 1
  56. # define SYNCTEX_IS_PATH_SEPARATOR(c) ('/' == c)
  57. # endif
  58. # if defined(_WIN32) || defined(__OS2__)
  59. # define SYNCTEX_IS_DOT(c) ('.' == c)
  60. # else
  61. # define SYNCTEX_IS_DOT(c) ('.' == c)
  62. # endif
  63. # if SYNCTEX_CASE_SENSITIVE_PATH
  64. # define SYNCTEX_ARE_PATH_CHARACTERS_EQUAL(left,right) (left != right)
  65. # else
  66. # define SYNCTEX_ARE_PATH_CHARACTERS_EQUAL(left,right) (toupper(left) != toupper(right))
  67. # endif
  68. /* This custom malloc functions initializes to 0 the newly allocated memory.
  69. * There is no bzero function on windows. */
  70. void *_synctex_malloc(size_t size);
  71. /* To balance _synctex_malloc.
  72. * ptr might be NULL. */
  73. void _synctex_free(void * ptr);
  74. /* This is used to log some informational message to the standard error stream.
  75. * On Windows, the stderr stream is not exposed and another method is used.
  76. * The return value is the number of characters printed. */
  77. int _synctex_error(const char * reason,...);
  78. int _synctex_debug(const char * reason,...);
  79. /* strip the last extension of the given string, this string is modified!
  80. * This function depends on the OS because the path separator may differ.
  81. * This should be discussed more precisely. */
  82. void _synctex_strip_last_path_extension(char * string);
  83. /* Compare two file names, windows is sometimes case insensitive...
  84. * The given strings may differ stricto sensu, but represent the same file name.
  85. * It might not be the real way of doing things.
  86. * The return value is an undefined non 0 value when the two file names are equivalent.
  87. * It is 0 otherwise. */
  88. synctex_bool_t _synctex_is_equivalent_file_name(const char *lhs, const char *rhs);
  89. /* Description forthcoming.*/
  90. synctex_bool_t _synctex_path_is_absolute(const char * name);
  91. /* Description forthcoming...*/
  92. const char * _synctex_last_path_component(const char * name);
  93. /* Description forthcoming...*/
  94. const char * _synctex_base_name(const char *path);
  95. /* If the core of the last path component of src is not already enclosed with double quotes ('"')
  96. * and contains a space character (' '), then a new buffer is created, the src is copied and quotes are added.
  97. * In all other cases, no destination buffer is created and the src is not copied.
  98. * 0 on success, which means no error, something non 0 means error, mainly due to memory allocation failure, or bad parameter.
  99. * This is used to fix a bug in the first version of pdftex with synctex (1.40.9) for which names with spaces
  100. * were not managed in a standard way.
  101. * On success, the caller owns the buffer pointed to by dest_ref (is any) and
  102. * is responsible of freeing the memory when done.
  103. * The size argument is the size of the src buffer. On return the dest_ref points to a buffer sized size+2.*/
  104. int _synctex_copy_with_quoting_last_path_component(const char * src, char ** dest_ref, size_t size);
  105. /* These are the possible extensions of the synctex file */
  106. extern const char * synctex_suffix;
  107. extern const char * synctex_suffix_gz;
  108. typedef unsigned int synctex_io_mode_t;
  109. typedef enum {
  110. synctex_io_append_mask = 1,
  111. synctex_io_gz_mask = synctex_io_append_mask<<1
  112. } synctex_io_mode_masks_t;
  113. typedef enum {
  114. synctex_compress_mode_none = 0,
  115. synctex_compress_mode_gz = 1
  116. } synctex_compress_mode_t;
  117. int _synctex_get_name(const char * output, const char * build_directory, char ** synctex_name_ref, synctex_io_mode_t * io_mode_ref);
  118. /* returns the correct mode required by fopen and gzopen from the given io_mode */
  119. const char * _synctex_get_io_mode_name(synctex_io_mode_t io_mode);
  120. synctex_bool_t synctex_ignore_leading_dot_slash_in_path(const char ** name);
  121. #ifdef __cplusplus
  122. }
  123. #endif
  124. #endif
  125. #endif /* SYNCTEX_PARSER_UTILS_H */