gecko-dev/build/clang-plugin/mozsearch-plugin/FileOperations.h
Kartikaya Gupta 31c634d913 Bug 1438866 - Use proper path separators for windows. r=emilio
The indexer has paths handed to it on Windows with the backslash path separator.
However it currently hard-codes the forward-slash Unix/macOS path separator,
so we need to generify that code appropriately.

MozReview-Commit-ID: Iy8bImt2BXW

--HG--
extra : rebase_source : 4b88b44319c05ce816afc4e690d3d33d39b7e43c
2018-02-16 17:07:39 -05:00

47 lines
1.2 KiB
C++

/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef FileOperations_h
#define FileOperations_h
#include <stdio.h>
#include <string>
#if defined(_WIN32) || defined(_WIN64)
#include <windows.h>
#define PATHSEP_CHAR '\\'
#define PATHSEP_STRING "\\"
#else
#define PATHSEP_CHAR '/'
#define PATHSEP_STRING "/"
#endif
// Make sure that all directories on path exist, excluding the final element of
// the path.
void ensurePath(std::string Path);
std::string getAbsolutePath(const std::string &Filename);
// Lock the given filename so that it cannot be opened by anyone else until this
// object goes out of scope. On Windows, we use a named mutex. On POSIX
// platforms, we use flock.
struct AutoLockFile {
int FileDescriptor = -1;
#if defined(_WIN32) || defined(_WIN64)
HANDLE Handle = NULL;
#endif
AutoLockFile(const std::string &Filename);
~AutoLockFile();
bool success();
FILE *openFile(const char *Mode);
bool truncateFile(size_t Length);
};
#endif