2012-06-10 16:50:54 +00:00
|
|
|
/*
|
|
|
|
* synergy -- mouse and keyboard sharing utility
|
2016-09-07 14:24:00 +00:00
|
|
|
* Copyright (C) 2012-2016 Symless Ltd.
|
2012-09-04 02:09:56 +00:00
|
|
|
* Copyright (C) 2002 Chris Schoeneman
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* This package is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
2015-05-03 02:33:52 +00:00
|
|
|
* found in the file LICENSE that should have accompanied this file.
|
2012-06-10 16:50:54 +00:00
|
|
|
*
|
|
|
|
* This package 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 this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#pragma once
|
2012-06-10 16:50:54 +00:00
|
|
|
|
2014-02-28 12:36:45 +00:00
|
|
|
#include "common/IInterface.h"
|
|
|
|
#include "common/stdstring.h"
|
2015-03-04 11:15:07 +00:00
|
|
|
#include "base/String.h"
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//! Interface for architecture dependent file system operations
|
|
|
|
/*!
|
|
|
|
This interface defines the file system operations required by
|
|
|
|
synergy. Each architecture must implement this interface.
|
|
|
|
*/
|
|
|
|
class IArchFile : public IInterface {
|
|
|
|
public:
|
|
|
|
//! @name manipulators
|
|
|
|
//@{
|
|
|
|
|
|
|
|
//! Extract base name
|
|
|
|
/*!
|
|
|
|
Find the base name in the given \c pathname.
|
|
|
|
*/
|
|
|
|
virtual const char* getBasename(const char* pathname) = 0;
|
|
|
|
|
|
|
|
//! Get user's home directory
|
|
|
|
/*!
|
|
|
|
Returns the user's home directory. Returns the empty string if
|
|
|
|
this cannot be determined.
|
|
|
|
*/
|
|
|
|
virtual std::string getUserDirectory() = 0;
|
|
|
|
|
|
|
|
//! Get system directory
|
|
|
|
/*!
|
|
|
|
Returns the ussystem configuration file directory.
|
|
|
|
*/
|
|
|
|
virtual std::string getSystemDirectory() = 0;
|
|
|
|
|
2014-10-27 14:11:43 +00:00
|
|
|
//! Get installed directory
|
|
|
|
/*!
|
|
|
|
Returns the directory in which Synergy is installed.
|
|
|
|
*/
|
|
|
|
virtual std::string getInstalledDirectory() = 0;
|
|
|
|
|
|
|
|
//! Get log directory
|
|
|
|
/*!
|
|
|
|
Returns the log file directory.
|
|
|
|
*/
|
|
|
|
virtual std::string getLogDirectory() = 0;
|
|
|
|
|
2015-02-09 15:37:47 +00:00
|
|
|
//! Get plugins directory
|
|
|
|
/*!
|
2015-03-04 11:15:07 +00:00
|
|
|
Returns the plugin files directory. If no plugin directory is set,
|
|
|
|
this will return the plugin folder within the user's profile.
|
2015-02-09 15:37:47 +00:00
|
|
|
*/
|
|
|
|
virtual std::string getPluginDirectory() = 0;
|
|
|
|
|
2015-03-04 11:15:07 +00:00
|
|
|
//! Get user's profile directory
|
2015-02-11 17:28:56 +00:00
|
|
|
/*!
|
2015-03-04 11:15:07 +00:00
|
|
|
Returns the user's profile directory. If no profile directory is set,
|
|
|
|
this will return the user's profile according to the operating system,
|
|
|
|
which will depend on which user launched the program.
|
2015-02-11 17:28:56 +00:00
|
|
|
*/
|
|
|
|
virtual std::string getProfileDirectory() = 0;
|
|
|
|
|
2012-06-10 16:50:54 +00:00
|
|
|
//! Concatenate path components
|
|
|
|
/*!
|
|
|
|
Concatenate pathname components with a directory separator
|
|
|
|
between them. This should not check if the resulting path
|
|
|
|
is longer than allowed by the system; we'll rely on the
|
|
|
|
system calls to tell us that.
|
|
|
|
*/
|
|
|
|
virtual std::string concatPath(
|
|
|
|
const std::string& prefix,
|
|
|
|
const std::string& suffix) = 0;
|
2015-03-04 11:15:07 +00:00
|
|
|
|
|
|
|
//@}
|
|
|
|
//! Set the user's profile directory
|
|
|
|
/*
|
|
|
|
Returns the user's profile directory.
|
|
|
|
*/
|
|
|
|
virtual void setProfileDirectory(const String& s) = 0;
|
2012-06-10 16:50:54 +00:00
|
|
|
|
|
|
|
//@}
|
2015-03-04 11:15:07 +00:00
|
|
|
//! Set the user's plugin directory
|
|
|
|
/*
|
|
|
|
Returns the user's plugin directory.
|
|
|
|
*/
|
|
|
|
virtual void setPluginDirectory(const String& s) = 0;
|
2012-06-10 16:50:54 +00:00
|
|
|
};
|