- 论坛徽章:
- 0
|
本帖最后由 duanjigang 于 2011-10-03 22:51 编辑
axel_new之后,就是axel_open过程了。
axel_open主要是打开本地文件,用于下载存储,如果多个连接的话,进行文件切分:wink:
axel_open和axel_divide
- int axel_open( axel_t *axel )
- {
- int i, fd;
- long long int j;
-
- if( axel->conf->verbose > 0 )
- axel_message( axel, _("Opening output file %s"), axel->filename );
- snprintf( buffer, MAX_STRING, "%s.st", axel->filename );
-
- axel->outfd = -1;
-
- /* Check whether server knows about RESTart and switch back to
- single connection download if necessary */
-
- //服务器不支持文件片段下载,这样的话,只能用一个连接去老老实实下载了
- if( !axel->conn[0].supported )
- {
- axel_message( axel, _("Server unsupported, "
- "starting from scratch with one connection.") );
- axel->conf->num_connections = 1;//修改连接数
- axel->conn = realloc( axel->conn, sizeof( conn_t ) ); //只申请一个节点
- axel_divide( axel );//分割文件
- }
- //支持分片下载,如果状态文件已经存在的话,尝试从状态文件中读取每个连接的状态
- //当前已经下载了多少
- else if( ( fd = open( buffer, O_RDONLY ) ) != -1 )
- {
- //读取连接数
- read( fd, &axel->conf->num_connections, sizeof( axel->conf->num_connections ) );
- //申请资源
- axel->conn = realloc( axel->conn, sizeof( conn_t ) * axel->conf->num_connections );
- memset( axel->conn + 1, 0, sizeof( conn_t ) * ( axel->conf->num_connections - 1 ) );
- //拆分文件
- axel_divide( axel );
- //读取已经下载的字节数
- read( fd, &axel->bytes_done, sizeof( axel->bytes_done ) );
- //读取每个连接当前下载的位置
- for( i = 0; i < axel->conf->num_connections; i ++ )
- read( fd, &axel->conn[i].currentbyte, sizeof( axel->conn[i].currentbyte ) );
- axel_message( axel, _("State file found: %lld bytes downloaded, %lld to go."),
- axel->bytes_done, axel->size - axel->bytes_done );
-
- close( fd );
- //打开或者创建数据文件
- if( ( axel->outfd = open( axel->filename, O_WRONLY, 0666 ) ) == -1 )
- {
- axel_message( axel, _("Error opening local file") );
- return( 0 );
- }
- }
- /* If outfd == -1 we have to start from scrath now */
- //重新开始
- if( axel->outfd == -1 )
- {
- //先拆分文件
- axel_divide( axel );
-
- if( ( axel->outfd = open( axel->filename, O_CREAT | O_WRONLY, 0666 ) ) == -1 )
- {
- axel_message( axel, _("Error opening local file") );
- return( 0 );
- }
-
- /* And check whether the filesystem can handle seeks to
- past-EOF areas.. Speeds things up. :) AFAIK this
- should just not happen: */
- //如果是多连接下载,检测在空文件中,系统是否支持能够seek到一个EOF的位置
- //也就是测试是否支持空洞文件,不支持的话,把整个文件都填成0,这样保证每个连接都能够在自己该写入的地方写入数据
- if( lseek( axel->outfd, axel->size, SEEK_SET ) == -1 && axel->conf->num_connections > 1 )
- {
- /* But if the OS/fs does not allow to seek behind
- EOF, we have to fill the file with zeroes before
- starting. Slow.. */
- axel_message( axel, _("Crappy filesystem/OS.. Working around. :-(") );
- lseek( axel->outfd, 0, SEEK_SET );
- memset( buffer, 0, axel->conf->buffer_size );
- j = axel->size;
- //循环填充文件
- while( j > 0 )
- {
- write( axel->outfd, buffer, min( j, axel->conf->buffer_size ) );
- j -= axel->conf->buffer_size;
- }
- }
- }
-
- return( 1 );
- }
复制代码 axel_divide
- static void axel_divide( axel_t *axel )
- {
- int i;
-
- //第一个连接的当前位置
- axel->conn[0].currentbyte = 0;
- //该写入的最后一个字节位置
- axel->conn[0].lastbyte = axel->size / axel->conf->num_connections - 1;
- //计算别的连接的开始位置和结束位置
- for( i = 1; i < axel->conf->num_connections; i ++ )
- {
- #ifdef DEBUG
- printf( "Downloading %lld-%lld using conn. %i\n", axel->conn[i-1].currentbyte, axel->conn[i-1].lastbyte, i - 1 );
- #endif
- axel->conn[i].currentbyte = axel->conn[i-1].lastbyte + 1;
- axel->conn[i].lastbyte = axel->conn[i].currentbyte + axel->size / axel->conf->num_connections;
- }
- axel->conn[axel->conf->num_connections-1].lastbyte = axel->size - 1;
- #ifdef DEBUG
- printf( "Downloading %lld-%lld using conn. %i\n", axel->conn[i-1].currentbyte, axel->conn[i-1].lastbyte, i - 1 );
- #endif
- }
复制代码 |
|