2014-09-07 15:08:27 +00:00
|
|
|
/*
|
|
|
|
* s3fs - FUSE-based file system backed by Amazon S3
|
|
|
|
*
|
|
|
|
* Copyright 2007-2008 Randy Rizun <rrizun@gmail.com>
|
|
|
|
*
|
|
|
|
* This program 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 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
2013-03-30 13:37:14 +00:00
|
|
|
#ifndef S3FS_COMMON_H_
|
|
|
|
#define S3FS_COMMON_H_
|
|
|
|
|
|
|
|
//
|
|
|
|
// Macro
|
|
|
|
//
|
2013-08-10 15:29:39 +00:00
|
|
|
#define SAFESTRPTR(strptr) (strptr ? strptr : "")
|
|
|
|
|
|
|
|
// for debug
|
|
|
|
#define FPRINT_NEST_SPACE_0 ""
|
|
|
|
#define FPRINT_NEST_SPACE_1 " "
|
|
|
|
#define FPRINT_NEST_SPACE_2 " "
|
|
|
|
#define FPRINT_NEST_CHECK(NEST) \
|
|
|
|
(0 == NEST ? FPRINT_NEST_SPACE_0 : 1 == NEST ? FPRINT_NEST_SPACE_1 : FPRINT_NEST_SPACE_2)
|
|
|
|
|
|
|
|
#define LOWFPRINT(NEST, ...) \
|
|
|
|
printf("%s%s(%d): ", FPRINT_NEST_CHECK(NEST), __func__, __LINE__); \
|
|
|
|
printf(__VA_ARGS__); \
|
|
|
|
printf("\n"); \
|
|
|
|
|
|
|
|
#define FPRINT(NEST, ...) \
|
|
|
|
if(foreground){ \
|
|
|
|
LOWFPRINT(NEST, __VA_ARGS__); \
|
|
|
|
}
|
2013-03-30 13:37:14 +00:00
|
|
|
|
2013-08-10 15:29:39 +00:00
|
|
|
#define FPRINT2(NEST, ...) \
|
|
|
|
if(foreground2){ \
|
|
|
|
LOWFPRINT(NEST, __VA_ARGS__); \
|
2013-03-30 13:37:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 15:29:39 +00:00
|
|
|
#define LOWSYSLOGPRINT(LEVEL, ...) \
|
|
|
|
syslog(LEVEL, __VA_ARGS__);
|
|
|
|
|
|
|
|
#define SYSLOGPRINT(LEVEL, ...) \
|
|
|
|
if(LEVEL <= LOG_CRIT || debug){ \
|
|
|
|
LOWSYSLOGPRINT(LEVEL, __VA_ARGS__); \
|
2013-03-30 13:37:14 +00:00
|
|
|
}
|
|
|
|
|
2013-08-10 15:29:39 +00:00
|
|
|
#define DPRINT(LEVEL, NEST, ...) \
|
|
|
|
FPRINT(NEST, __VA_ARGS__); \
|
|
|
|
SYSLOGPRINT(LEVEL, __VA_ARGS__);
|
2013-03-30 13:37:14 +00:00
|
|
|
|
2013-08-10 15:29:39 +00:00
|
|
|
#define DPRINT2(LEVEL, ...) \
|
|
|
|
FPRINT2(2, __VA_ARGS__); \
|
|
|
|
SYSLOGPRINT(LEVEL, __VA_ARGS__);
|
Changes codes for performance(part 3)
* Summay
This revision includes big change about temporary file and local cache file.
By this big change, s3fs works with good performance when s3fs opens/
closes/syncs/reads object.
I made a big change about the handling about temporary file and local cache
file to do this implementation.
* Detail
1) About temporary file(local file)
s3fs uses a temporary file on local file system when s3fs does download/
upload/open/seek object on S3.
After this revision, s3fs calls ftruncate() function when s3fs makes the
temporary file.
In this way s3fs can set a file size of precisely length without downloading.
(Notice - ftruncate function is for XSI-compliant systems, so that possibly
you have a problem on non-XSI-compliant systems.)
By this change, s3fs can download a part of a object by requesting with
"Range" http header. It seems like downloading by each block unit.
The default block(part) size is 50MB, it is caused the result which is default
parallel requests count(5) by default multipart upload size(10MB).
If you need to change this block size, you can change by new option
"fd_page_size". This option can take from 1MB(1024 * 1024) to any bytes.
So that, you have to take care about that fdcache.cpp(and fdcache.h) were
changed a lot.
2) About local cache
Local cache files which are in directory specified by "use_cache" option do
not have always all of object data.
This cause is that s3fs uses ftruncate function and reads(writes) each block
unit of a temporary file.
s3fs manages each block unit's status which are "downloaded area" or "not".
For this status, s3fs makes new temporary file in cache directory which is
specified by "use_cache" option. This status files is in a directory which is
named "<use_cache sirectory>/.<bucket_name>/".
When s3fs opens this status file, s3fs locks this file for exclusive control by
calling flock function. You need to take care about this, the status files can
not be laid on network drive(like NFS).
This revision changes about file open mode, s3fs always opens a local cache
file and each status file with writable mode.
Last, this revision adds new option "del_cache", this option means that s3fs
deletes all local cache file when s3fs starts and exits.
3) Uploading
When s3fs writes data to file descriptor through FUSE request, old s3fs
revision downloads all of the object. But new revision does not download all,
it downloads only small percial area(some block units) including writing data
area.
And when s3fs closes or flushes the file descriptor, s3fs downloads other area
which is not downloaded from server. After that, s3fs uploads all of data.
Already r456 revision has parallel upload function, then this revision with
r456 and r457 are very big change for performance.
4) Downloading
By changing a temporary file and a local cache file, when s3fs downloads a
object, it downloads only the required range(some block units).
And s3fs downloads units by parallel GET request, it is same as a case of
uploading. (Maximum parallel request count and each download size are
specified same parameters for uploading.)
In the new revision, when s3fs opens file, s3fs returns file descriptor soon.
Because s3fs only opens(makes) the file descriptor with no downloading
data. And when s3fs reads a data, s3fs downloads only some block unit
including specified area.
This result is good for performance.
5) Changes option name
The option "parallel_upload" which added at r456 is changed to new option
name as "parallel_count". This reason is this option value is not only used by
uploading object, but a uploading object also uses this option. (For a while,
you can use old option name "parallel_upload" for compatibility.)
git-svn-id: http://s3fs.googlecode.com/svn/trunk@458 df820570-a93a-0410-bd06-b72b767a4274
2013-07-23 16:01:48 +00:00
|
|
|
|
2013-08-10 15:29:39 +00:00
|
|
|
// print debug message
|
|
|
|
#define FPRN(...) FPRINT(0, __VA_ARGS__)
|
|
|
|
#define FPRNN(...) FPRINT(1, __VA_ARGS__)
|
|
|
|
#define FPRNNN(...) FPRINT(2, __VA_ARGS__)
|
|
|
|
#define FPRNINFO(...) FPRINT2(2, __VA_ARGS__)
|
|
|
|
|
|
|
|
// print debug message with putting syslog
|
|
|
|
#define DPRNCRIT(...) DPRINT(LOG_CRIT, 0, __VA_ARGS__)
|
|
|
|
#define DPRN(...) DPRINT(LOG_ERR, 0, __VA_ARGS__)
|
|
|
|
#define DPRNN(...) DPRINT(LOG_DEBUG, 1, __VA_ARGS__)
|
|
|
|
#define DPRNNN(...) DPRINT(LOG_DEBUG, 2, __VA_ARGS__)
|
|
|
|
#define DPRNINFO(...) DPRINT2(LOG_INFO, __VA_ARGS__)
|
2013-07-05 02:28:31 +00:00
|
|
|
|
2013-03-30 13:37:14 +00:00
|
|
|
//
|
|
|
|
// Typedef
|
|
|
|
//
|
|
|
|
typedef std::map<std::string, std::string> headers_t;
|
|
|
|
|
2015-04-20 17:24:57 +00:00
|
|
|
//
|
|
|
|
// Header "x-amz-meta-xattr" is for extended attributes.
|
|
|
|
// This header is url encoded string which is json formated.
|
2015-06-06 16:39:39 +00:00
|
|
|
// x-amz-meta-xattr:urlencod({"xattr-1":"base64(value-1)","xattr-2":"base64(value-2)","xattr-3":"base64(value-3)"})
|
2015-04-20 17:24:57 +00:00
|
|
|
//
|
2015-06-06 16:39:39 +00:00
|
|
|
typedef struct xattr_value{
|
|
|
|
unsigned char* pvalue;
|
|
|
|
size_t length;
|
|
|
|
|
|
|
|
xattr_value(unsigned char* pval = NULL, size_t len = 0) : pvalue(pval), length(len) {}
|
|
|
|
~xattr_value()
|
|
|
|
{
|
|
|
|
if(pvalue){
|
|
|
|
free(pvalue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}XATTRVAL, *PXATTRVAL;
|
|
|
|
|
|
|
|
typedef std::map<std::string, PXATTRVAL> xattrs_t;
|
2015-04-20 17:24:57 +00:00
|
|
|
|
2013-03-30 13:37:14 +00:00
|
|
|
//
|
|
|
|
// Global valiables
|
|
|
|
//
|
|
|
|
extern bool debug;
|
|
|
|
extern bool foreground;
|
Changes codes for performance(part 3)
* Summay
This revision includes big change about temporary file and local cache file.
By this big change, s3fs works with good performance when s3fs opens/
closes/syncs/reads object.
I made a big change about the handling about temporary file and local cache
file to do this implementation.
* Detail
1) About temporary file(local file)
s3fs uses a temporary file on local file system when s3fs does download/
upload/open/seek object on S3.
After this revision, s3fs calls ftruncate() function when s3fs makes the
temporary file.
In this way s3fs can set a file size of precisely length without downloading.
(Notice - ftruncate function is for XSI-compliant systems, so that possibly
you have a problem on non-XSI-compliant systems.)
By this change, s3fs can download a part of a object by requesting with
"Range" http header. It seems like downloading by each block unit.
The default block(part) size is 50MB, it is caused the result which is default
parallel requests count(5) by default multipart upload size(10MB).
If you need to change this block size, you can change by new option
"fd_page_size". This option can take from 1MB(1024 * 1024) to any bytes.
So that, you have to take care about that fdcache.cpp(and fdcache.h) were
changed a lot.
2) About local cache
Local cache files which are in directory specified by "use_cache" option do
not have always all of object data.
This cause is that s3fs uses ftruncate function and reads(writes) each block
unit of a temporary file.
s3fs manages each block unit's status which are "downloaded area" or "not".
For this status, s3fs makes new temporary file in cache directory which is
specified by "use_cache" option. This status files is in a directory which is
named "<use_cache sirectory>/.<bucket_name>/".
When s3fs opens this status file, s3fs locks this file for exclusive control by
calling flock function. You need to take care about this, the status files can
not be laid on network drive(like NFS).
This revision changes about file open mode, s3fs always opens a local cache
file and each status file with writable mode.
Last, this revision adds new option "del_cache", this option means that s3fs
deletes all local cache file when s3fs starts and exits.
3) Uploading
When s3fs writes data to file descriptor through FUSE request, old s3fs
revision downloads all of the object. But new revision does not download all,
it downloads only small percial area(some block units) including writing data
area.
And when s3fs closes or flushes the file descriptor, s3fs downloads other area
which is not downloaded from server. After that, s3fs uploads all of data.
Already r456 revision has parallel upload function, then this revision with
r456 and r457 are very big change for performance.
4) Downloading
By changing a temporary file and a local cache file, when s3fs downloads a
object, it downloads only the required range(some block units).
And s3fs downloads units by parallel GET request, it is same as a case of
uploading. (Maximum parallel request count and each download size are
specified same parameters for uploading.)
In the new revision, when s3fs opens file, s3fs returns file descriptor soon.
Because s3fs only opens(makes) the file descriptor with no downloading
data. And when s3fs reads a data, s3fs downloads only some block unit
including specified area.
This result is good for performance.
5) Changes option name
The option "parallel_upload" which added at r456 is changed to new option
name as "parallel_count". This reason is this option value is not only used by
uploading object, but a uploading object also uses this option. (For a while,
you can use old option name "parallel_upload" for compatibility.)
git-svn-id: http://s3fs.googlecode.com/svn/trunk@458 df820570-a93a-0410-bd06-b72b767a4274
2013-07-23 16:01:48 +00:00
|
|
|
extern bool foreground2;
|
|
|
|
extern bool nomultipart;
|
2014-06-03 14:03:49 +00:00
|
|
|
extern bool pathrequeststyle;
|
2013-03-30 13:37:14 +00:00
|
|
|
extern std::string program_name;
|
|
|
|
extern std::string service_path;
|
|
|
|
extern std::string host;
|
|
|
|
extern std::string bucket;
|
|
|
|
extern std::string mount_prefix;
|
2015-01-20 16:31:36 +00:00
|
|
|
extern std::string endpoint;
|
2013-03-30 13:37:14 +00:00
|
|
|
|
|
|
|
#endif // S3FS_COMMON_H_
|
2014-09-07 15:08:27 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Local variables:
|
|
|
|
* tab-width: 4
|
|
|
|
* c-basic-offset: 4
|
|
|
|
* End:
|
|
|
|
* vim600: noet sw=4 ts=4 fdm=marker
|
|
|
|
* vim<600: noet sw=4 ts=4
|
|
|
|
*/
|