/usr/include/octave-4.2.2/octave/file-ops.h is in liboctave-dev 4.2.2-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 | /*
Copyright (C) 1996-2017 John W. Eaton
This file is part of Octave.
Octave is free software; you can redistribute it and/or modify it
under the terms of the GNU General Public License as published by the
Free Software Foundation; either version 3 of the License, or (at your
option) any later version.
Octave is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
for more details.
You should have received a copy of the GNU General Public License
along with Octave; see the file COPYING. If not, see
<http://www.gnu.org/licenses/>.
*/
#if ! defined (octave_file_ops_h)
#define octave_file_ops_h 1
#include "octave-config.h"
#include <string>
#include <sys/types.h>
#include "str-vec.h"
namespace octave
{
namespace sys
{
struct
OCTAVE_API
file_ops
{
protected:
// Use a singleton class for dir_sep data members instead of just
// making them static members of the file_ops class so that we
// can ensure proper initialization.
file_ops (char dev_sep_char_arg = 0, char dir_sep_char_arg = 0,
const std::string& dir_sep_str_arg = std::string ("/"),
const std::string& dir_sep_chars_arg = std::string ("/"))
: m_dev_sep_char (dev_sep_char_arg),
m_dir_sep_char (dir_sep_char_arg),
m_dir_sep_str (dir_sep_str_arg),
m_dir_sep_chars (dir_sep_chars_arg) { }
public:
typedef std::string (*tilde_expansion_hook) (const std::string&);
static tilde_expansion_hook tilde_expansion_preexpansion_hook;
static tilde_expansion_hook tilde_expansion_failure_hook;
static string_vector tilde_additional_prefixes;
static string_vector tilde_additional_suffixes;
static char dev_sep_char (void)
{
return instance_ok () ? instance->m_dev_sep_char : 0;
}
static bool is_dev_sep (char c);
static char dir_sep_char (void)
{
return instance_ok () ? instance->m_dir_sep_char : 0;
}
static std::string dir_sep_str (void)
{
return instance_ok () ? instance->m_dir_sep_str : "";
}
static std::string dir_sep_chars (void)
{
return instance_ok () ? instance->m_dir_sep_chars : "";
}
static bool is_dir_sep (char c)
{
std::string tmp = dir_sep_chars ();
return tmp.find (c) != std::string::npos;
}
static std::string tilde_expand (const std::string&);
static string_vector tilde_expand (const string_vector&);
static std::string concat (const std::string&, const std::string&);
// Return the directory part of a filename or an empty string if
// there is no directory component. Does not check to see
// whether the file exists or is a directory.
static std::string dirname (const std::string& path)
{
size_t ipos = path.find_last_of (dir_sep_chars ());
return (ipos != std::string::npos) ? path.substr (0, ipos) : "";
}
// Return the tail member of a filename.
static std::string tail (const std::string& path)
{
size_t ipos = path.find_last_of (dir_sep_chars ());
if (ipos != std::string::npos)
ipos++;
else
ipos = 0;
return path.substr (ipos);
}
// convert path from UNIX type separators to whatever is the system separators
static std::string native_separator_path (const std::string& path);
private:
static file_ops *instance;
static void cleanup_instance (void) { delete instance; instance = 0; }
// No copying!
file_ops (const file_ops&);
file_ops& operator = (const file_ops&);
static bool instance_ok (void);
char m_dev_sep_char;
char m_dir_sep_char;
std::string m_dir_sep_str;
std::string m_dir_sep_chars;
};
// We don't have these in the file_ops class with their simple names
// (i.e., mkdir instead of octave_mdir) because function names in
// standard headers may be #defined.
extern OCTAVE_API int
mkdir (const std::string&, mode_t);
extern OCTAVE_API int
mkdir (const std::string&, mode_t, std::string&);
extern OCTAVE_API int
mkfifo (const std::string&, mode_t);
extern OCTAVE_API int
mkfifo (const std::string&, mode_t, std::string&);
extern OCTAVE_API int
link (const std::string&, const std::string&);
extern OCTAVE_API int
link (const std::string&, const std::string&, std::string&);
extern OCTAVE_API int
symlink (const std::string&, const std::string&);
extern OCTAVE_API int
symlink (const std::string&, const std::string&, std::string&);
extern OCTAVE_API int
readlink (const std::string&, std::string&);
extern OCTAVE_API int
readlink (const std::string&, std::string&, std::string&);
extern OCTAVE_API int
rename (const std::string&, const std::string&);
extern OCTAVE_API int
rename (const std::string&, const std::string&, std::string&);
extern OCTAVE_API int
rmdir (const std::string&);
extern OCTAVE_API int
rmdir (const std::string&, std::string&);
extern OCTAVE_API int
recursive_rmdir (const std::string&);
extern OCTAVE_API int
recursive_rmdir (const std::string&, std::string&);
extern OCTAVE_API int
umask (mode_t);
extern OCTAVE_API int
unlink (const std::string&);
extern OCTAVE_API int
unlink (const std::string&, std::string&);
extern OCTAVE_API std::string
tempnam (const std::string&, const std::string&);
extern OCTAVE_API std::string
tempnam (const std::string&, const std::string&, std::string&);
extern OCTAVE_API std::string
canonicalize_file_name (const std::string&);
extern OCTAVE_API std::string
canonicalize_file_name (const std::string&, std::string&);
}
}
#if defined (OCTAVE_USE_DEPRECATED_FUNCTIONS)
OCTAVE_DEPRECATED ("use 'octave::sys::file_ops' instead")
typedef octave::sys::file_ops file_ops;
OCTAVE_DEPRECATED ("use 'octave::sys::mkdir' instead")
inline int
octave_mkdir (const std::string& nm, mode_t md)
{
return octave::sys::mkdir (nm, md);
}
OCTAVE_DEPRECATED ("use 'octave::sys::mkdir' instead")
inline int
octave_mkdir (const std::string& nm, mode_t md, std::string& msg)
{
return octave::sys::mkdir (nm, md, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::mkfifo' instead")
inline int
octave_mkfifo (const std::string& nm, mode_t md)
{
return octave::sys::mkfifo (nm, md);
}
OCTAVE_DEPRECATED ("use 'octave::sys::mkfifo' instead")
inline int
octave_mkfifo (const std::string& nm, mode_t md, std::string& msg)
{
return octave::sys::mkfifo (nm, md, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::link' instead")
inline int
octave_link (const std::string& old_name, const std::string& new_name)
{
return octave::sys::link (old_name, new_name);
}
OCTAVE_DEPRECATED ("use 'octave::sys::link' instead")
inline int
octave_link (const std::string& old_name, const std::string& new_name,
std::string& msg)
{
return octave::sys::link (old_name, new_name, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::symlink' instead")
inline int
octave_symlink (const std::string& old_name, const std::string& new_name)
{
return octave::sys::symlink (old_name, new_name);
}
OCTAVE_DEPRECATED ("use 'octave::sys::symlink' instead")
inline int
octave_symlink (const std::string& old_name, const std::string& new_name,
std::string& msg)
{
return octave::sys::symlink (old_name, new_name, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::readlink' instead")
inline int
octave_readlink (const std::string& path, std::string& result)
{
return octave::sys::readlink (path, result);
}
OCTAVE_DEPRECATED ("use 'octave::sys::readlink' instead")
inline int
octave_readlink (const std::string& path, std::string& result, std::string& msg)
{
return octave::sys::readlink (path, result, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::rename' instead")
inline int
octave_rename (const std::string& from, const std::string& to)
{
return octave::sys::rename (from, to);
}
OCTAVE_DEPRECATED ("use 'octave::sys::rename' instead")
inline int
octave_rename (const std::string& from, const std::string& to, std::string& msg)
{
return octave::sys::rename (from, to, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::rmdir' instead")
inline int
octave_rmdir (const std::string& nm)
{
return octave::sys::rmdir (nm);
}
OCTAVE_DEPRECATED ("use 'octave::sys::rmdir' instead")
inline int
octave_rmdir (const std::string& nm, std::string& msg)
{
return octave::sys::rmdir (nm, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::recursive_rmdir' instead")
inline int
octave_recursive_rmdir (const std::string& nm)
{
return octave::sys::recursive_rmdir (nm);
}
OCTAVE_DEPRECATED ("use 'octave::sys::recursive_rmdir' instead")
inline int
octave_recursive_rmdir (const std::string& nm, std::string& msg)
{
return octave::sys::recursive_rmdir (nm, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::umask' instead")
inline int
octave_umask (mode_t md)
{
return octave::sys::umask (md);
}
OCTAVE_DEPRECATED ("use 'octave::sys::unlink' instead")
inline int
octave_unlink (const std::string& nm)
{
return octave::sys::unlink (nm);
}
OCTAVE_DEPRECATED ("use 'octave::sys::unlink' instead")
inline int
octave_unlink (const std::string& nm, std::string& msg)
{
return octave::sys::unlink (nm, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::tempnam' instead")
inline std::string
octave_tempnam (const std::string& dir, const std::string& pfx)
{
return octave::sys::tempnam (dir, pfx);
}
OCTAVE_DEPRECATED ("use 'octave::sys::tempnam' instead")
inline std::string
octave_tempnam (const std::string& dir, const std::string& pfx,
std::string& msg)
{
return octave::sys::tempnam (dir, pfx, msg);
}
OCTAVE_DEPRECATED ("use 'octave::sys::canonicalize_file_name' instead")
inline std::string
octave_canonicalize_file_name (const std::string& nm)
{
return octave::sys::canonicalize_file_name (nm);
}
OCTAVE_DEPRECATED ("use 'octave::sys::canonicalize_file_name' instead")
inline std::string
octave_canonicalize_file_name (const std::string& nm, std::string& msg)
{
return octave::sys::canonicalize_file_name (nm, msg);
}
#endif
#endif
|