2 * Copyright (C) 2005-2013 Team XBMC
5 * This Program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2, or (at your option)
10 * This Program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with XBMC; see the file COPYING. If not, see
17 * <http://www.gnu.org/licenses/>.
21 #include "DVDInputStreamFile.h"
22 #include "filesystem/File.h"
23 #include "filesystem/IFile.h"
24 #include "settings/AdvancedSettings.h"
25 #include "utils/log.h"
26 #include "utils/URIUtils.h"
28 using namespace XFILE
;
30 CDVDInputStreamFile::CDVDInputStreamFile() : CDVDInputStream(DVDSTREAM_TYPE_FILE
)
36 CDVDInputStreamFile::~CDVDInputStreamFile()
41 bool CDVDInputStreamFile::IsEOF()
43 return !m_pFile
|| m_eof
;
46 bool CDVDInputStreamFile::Open(const char* strFile
, const std::string
& content
)
48 if (!CDVDInputStream::Open(strFile
, content
))
51 m_pFile
= new CFile();
55 unsigned int flags
= READ_TRUNCATED
| READ_BITRATE
| READ_CHUNKED
;
58 * There are 4 buffer modes available (configurable in as.xml)
59 * 0) Buffer all internet filesystems (like 2 but additionally also ftp, webdav, etc.) (default)
60 * 1) Buffer all filesystems (including local)
61 * 2) Only buffer true internet filesystems (streams) (http, etc.)
64 if (!URIUtils::IsOnDVD(strFile
) && !URIUtils::IsBluray(strFile
)) // Never cache these
66 if (g_advancedSettings
.m_networkBufferMode
== 0 || g_advancedSettings
.m_networkBufferMode
== 2)
68 if (URIUtils::IsInternetStream(CURL(strFile
), (g_advancedSettings
.m_networkBufferMode
== 0) ) )
71 else if (g_advancedSettings
.m_networkBufferMode
== 1)
73 flags
|= READ_CACHED
; // In buffer mode 1 force cache for (almost) all files
77 if (!(flags
& READ_CACHED
))
78 flags
|= READ_NO_CACHE
; // Make sure CFile honors our no-cache hint
80 if (content
== "video/mp4" || content
== "video/x-msvideo" || content
== "video/avi" || content
== "video/x-matroska")
81 flags
|= READ_MULTI_STREAM
;
83 // open file in binary mode
84 if (!m_pFile
->Open(strFile
, flags
))
91 if (m_pFile
->GetImplemenation() && (content
.empty() || content
== "application/octet-stream"))
92 m_content
= m_pFile
->GetImplemenation()->GetContent();
98 // close file and reset everyting
99 void CDVDInputStreamFile::Close()
107 CDVDInputStream::Close();
112 int CDVDInputStreamFile::Read(uint8_t* buf
, int buf_size
)
114 if(!m_pFile
) return -1;
116 unsigned int ret
= m_pFile
->Read(buf
, buf_size
);
118 /* we currently don't support non completing reads */
119 if( ret
== 0 ) m_eof
= true;
121 return (int)(ret
& 0xFFFFFFFF);
124 int64_t CDVDInputStreamFile::Seek(int64_t offset
, int whence
)
126 if(!m_pFile
) return -1;
128 if(whence
== SEEK_POSSIBLE
)
129 return m_pFile
->IoControl(IOCTRL_SEEK_POSSIBLE
, NULL
);
131 int64_t ret
= m_pFile
->Seek(offset
, whence
);
133 /* if we succeed, we are not eof anymore */
134 if( ret
>= 0 ) m_eof
= false;
139 int64_t CDVDInputStreamFile::GetLength()
142 return m_pFile
->GetLength();
146 bool CDVDInputStreamFile::GetCacheStatus(XFILE::SCacheStatus
*status
)
148 if(m_pFile
&& m_pFile
->IoControl(IOCTRL_CACHE_STATUS
, status
) >= 0)
154 BitstreamStats
CDVDInputStreamFile::GetBitstreamStats() const
157 return m_stats
; // dummy return. defined in CDVDInputStream
159 if(m_pFile
->GetBitstreamStats())
160 return *m_pFile
->GetBitstreamStats();
165 int CDVDInputStreamFile::GetBlockSize()
168 return m_pFile
->GetChunkSize();
173 void CDVDInputStreamFile::SetReadRate(unsigned rate
)
175 unsigned maxrate
= rate
+ 1024 * 1024 / 8;
176 if(m_pFile
->IoControl(IOCTRL_CACHE_SETRATE
, &maxrate
) >= 0)
177 CLog::Log(LOGDEBUG
, "CDVDInputStreamFile::SetReadRate - set cache throttle rate to %u bytes per second", maxrate
);