本文整理汇总了C++中pfc::array_t类的典型用法代码示例。如果您正苦于以下问题:C++ array_t类的具体用法?C++ array_t怎么用?C++ array_t使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了array_t类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: fileSanitySeek
static void fileSanitySeek(file::ptr f, pfc::array_t<uint8_t> const & content, size_t offset, abort_callback & aborter) {
const size_t readAmount = 64 * 1024;
pfc::array_staticsize_t<uint8_t> buf; buf.set_size_discard(readAmount);
f->seek(offset, aborter);
t_filesize positionGot = f->get_position(aborter);
if (positionGot != offset) {
FB2K_console_formatter() << "File sanity: at " << offset << " reported position became " << positionGot;
throw std::runtime_error("Seek test failure");
}
size_t did = f->read(buf.get_ptr(), readAmount, aborter);
size_t expected = pfc::min_t<size_t>(readAmount, content.get_size() - offset);
if (expected != did) {
FB2K_console_formatter() << "File sanity: at " << offset << " bytes, expected read size of " << expected << ", got " << did;
if (did > expected) FB2K_console_formatter() << "Read past EOF";
else FB2K_console_formatter() << "Premature EOF";
throw std::runtime_error("Seek test failure");
}
if (memcmp(buf.get_ptr(), content.get_ptr() + offset, did) != 0) {
FB2K_console_formatter() << "File sanity: data mismatch at " << offset << " - " << (offset + did) << " bytes";
throw std::runtime_error("Seek test failure");
}
positionGot = f->get_position(aborter);
if (positionGot != offset + did) {
FB2K_console_formatter() << "File sanity: at " << offset << "+" << did << "=" << (offset + did) << " reported position became " << positionGot;
throw std::runtime_error("Seek test failure");
}
}
示例2: STGMEDIUMToDataBlock
HRESULT IDataObjectUtils::STGMEDIUMToDataBlock(const STGMEDIUM & med, pfc::array_t<t_uint8> & out) {
switch(med.tymed) {
case TYMED_HGLOBAL:
{
CGlobalLockScope lock(med.hGlobal);
out.set_data_fromptr( (const t_uint8*) lock.GetPtr(), lock.GetSize() );
}
return S_OK;
case TYMED_ISTREAM:
{
HRESULT state;
IStream * stream = med.pstm;
LARGE_INTEGER offset = {};
STATSTG stats = {};
if (FAILED( state = stream->Stat(&stats,STATFLAG_NONAME ) ) ) return state;
t_size toRead = pfc::downcast_guarded<t_size>(stats.cbSize.QuadPart);
out.set_size(toRead);
if (FAILED( state = stream->Seek(offset,STREAM_SEEK_SET,NULL) ) ) return state;
ULONG cbRead = 0;
if (FAILED( state = stream->Read(out.get_ptr(), pfc::downcast_guarded<ULONG>(toRead), &cbRead) ) ) return state;
if (cbRead != toRead) return E_UNEXPECTED;
}
return S_OK;
default:
return DV_E_TYMED;
}
}
示例3: stream_to_mem_block
void stream_to_mem_block(stream_reader * p_source, pfc::array_t<t_uint8> & p_out,abort_callback & p_abort, unsigned p_sizehint, bool b_reset)
{
if (b_reset)
p_out.set_size(0);
enum {min_buffer = 256};
const unsigned buffer_size = max (min_buffer, p_sizehint);
pfc::array_t<t_uint8> buffer;
buffer.set_size(buffer_size);
for(;;)
{
unsigned delta_done = 0;
delta_done = p_source->read(buffer.get_ptr(),buffer_size,p_abort);
p_out.append_fromptr(buffer.get_ptr(),delta_done);
if (delta_done < buffer_size) break;
}
}
示例4: g_get_resource_data
bool g_get_resource_data (INT_PTR id, pfc::array_t<t_uint8> & p_out)
{
bool ret = false;
HRSRC rsrc = FindResource(core_api::get_my_instance(), MAKEINTRESOURCE(IDB_NOCOVER), L"PNG");
HGLOBAL handle = LoadResource(core_api::get_my_instance(), rsrc);
DWORD size = SizeofResource(core_api::get_my_instance(), rsrc);
LPVOID ptr = LockResource(handle);
if (ptr && size)
{
p_out.append_fromptr((t_uint8*)ptr, size);
ret = true;
}
FreeResource(handle);
return ret;
}
示例5: expand_var
bool script_preprocessor::expand_var(pfc::array_t<wchar_t> & out)
{
typedef pfc::string8_fast (*t_func)();
enum {
KStateInNormal,
KStateInPercent,
};
struct {
const wchar_t * which;
t_func func;
} expand_table[] = {
{ L"fb2k_path", helpers::get_fb2k_path },
{ L"fb2k_component_path", helpers::get_fb2k_component_path },
{ L"fb2k_profile_path", helpers::get_profile_path },
};
pfc::array_t<wchar_t> buffer;
wchar_t * pscan = out.get_ptr();
const wchar_t * pready = NULL;
const t_size delta = 32;
int state = KStateInNormal;
while (*pscan)
{
switch (state)
{
case KStateInNormal:
if (*pscan == '%')
{
pready = pscan;
state = KStateInPercent;
}
else
{
buffer.append_single(*pscan);
}
break;
case KStateInPercent:
if (*pscan == '%')
{
unsigned count = pscan - pready - 1;
if (!count)
{
buffer.append_single('%');
}
else
{
bool found = false;
for (t_size i = 0; i < _countof(expand_table); ++i)
{
t_size expand_which_size = wcslen(expand_table[i].which);
if (wcsncmp(pready + 1, expand_table[i].which, max(count, expand_which_size)) == 0)
{
pfc::stringcvt::string_wide_from_utf8_fast expanded(expand_table[i].func());
t_size expanded_count = expanded.length();
buffer.append_fromptr(expanded.get_ptr(), expanded_count);
found = true;
break;
}
}
if (!found)
{
buffer.append_fromptr(pready, count);
}
}
state = KStateInNormal;
}
break;
}
++pscan;
}
if (state == KStateInPercent)
{
buffer.append_fromptr(pscan, wcslen(pscan));
}
// trailing 'zero'
buffer.append_single(0);
// Copy
out = buffer;
return true;
}
示例6: decode_run
bool decode_run(audio_chunk & p_chunk, abort_callback & p_abort)
{
size_t data_size = m_decoder->decode_frame(&sample_buffer);
if (config.format == 6)
{
p_chunk.set_data_floatingpoint_ex(
sample_buffer.get_ptr(),
data_size,
m_decoder->sample_rate,
config.speakers,
get_bps_for_format(config.format),
get_flags_for_format(config.format),
get_channel_config_for_speakers(config.speakers));
}
else
{
p_chunk.set_data_fixedpoint_ex(
sample_buffer.get_ptr(),
data_size,
m_decoder->sample_rate,
config.speakers,
get_bps_for_format(config.format),
get_flags_for_format(config.format),
get_channel_config_for_speakers(config.speakers));
}
return (data_size > 0);
}
示例7: if
virtual HRESULT STDMETHODCALLTYPE Seek(
LARGE_INTEGER dlibMove,
DWORD dwOrigin,
ULARGE_INTEGER *plibNewPosition)
{
if (dwOrigin == STREAM_SEEK_CUR)
{
if (dlibMove.QuadPart + (LONGLONG)m_position < 0
|| dlibMove.QuadPart + (LONGLONG)m_position > MAXDWORD)
return STG_E_INVALIDFUNCTION;
m_position += (t_size)dlibMove.QuadPart; //Cast should be OK by if condition
}
else if (dwOrigin == STREAM_SEEK_END)
{
if (dlibMove.QuadPart + (LONGLONG)m_data.get_size() < 0)
return STG_E_INVALIDFUNCTION;
m_position = m_data.get_size() - (t_size)dlibMove.QuadPart; //Cast should be OK by if condition
}
else if (dwOrigin == STREAM_SEEK_SET)
{
if ((ULONGLONG)dlibMove.QuadPart > MAXDWORD)
return STG_E_INVALIDFUNCTION;
m_position = (t_size)dlibMove.QuadPart; //Cast should be OK by if condition
}
else
return STG_E_INVALIDFUNCTION;
if (plibNewPosition)
plibNewPosition->QuadPart = m_position;
return S_OK;
}
示例8: decode_run
bool decode_run( audio_chunk & p_chunk, abort_callback & p_abort )
{
if (!loop && is_playing == 0) return false;
int nbSample = 512;
sample_buffer.grow_size( nbSample );
is_playing = ModPlug_Read(m_player, sample_buffer.get_ptr(), nbSample*2);
p_chunk.set_data_fixedpoint( sample_buffer.get_ptr(), nbSample * 2, 44100, 2, 32, audio_chunk::channel_config_stereo );
return true;
}
示例9: decode_run
bool decode_run( audio_chunk & p_chunk, abort_callback & p_abort )
{
if (!loop && m_info.musicTimeInMs == ymMusicGetPos(m_player)) return false;
int nbSample = 500 / sizeof(ymsample);
sample_buffer.grow_size( nbSample );
ymMusicCompute(m_player,sample_buffer.get_ptr(), nbSample);
p_chunk.set_data_fixedpoint( sample_buffer.get_ptr(), nbSample * 2, 44100, 1, 16, audio_chunk::channel_config_mono );
return true;
}
示例10: get_info
void get_info( file_info & p_info, abort_callback & p_abort )
{
ModPlugFile* m_info = ModPlug_Load(file_buffer.get_ptr(), file_buffer.get_size());
p_info.info_set( "encoding", "synthesized" );
int type_module = ModPlug_GetModuleType(m_info);
p_info.info_set( "codec", "Module file" );
p_info.info_set_int( "channels", 2 );
p_info.meta_set( "title", pfc::stringcvt::string_utf8_from_ansi( ModPlug_GetName(m_info) ));
int len = ModPlug_GetLength(m_info);
len /= 1000;
p_info.set_length( len );
if(m_info)ModPlug_Unload(m_info);
}
示例11: Read
virtual /* [local] */ HRESULT STDMETHODCALLTYPE Read(
/* [length_is][size_is][out] */ void *pv,
/* [in] */ ULONG cb,
/* [out] */ ULONG *pcbRead)
{
if (m_position > m_data.get_size())
return STG_E_INVALIDFUNCTION;
t_size read = min (cb, m_data.get_size() - m_position);
memcpy(pv, &m_data.get_ptr()[m_position], read);
m_position += read;
if (pcbRead)
*pcbRead = read;
return S_OK;
}
示例12: cleanup
void cleanup()
{
filter.set_size( 0 );
srate = 0;
nch = 0;
channel_config = 0;
}
示例13: get_info
void get_info( file_info & p_info, abort_callback & p_abort )
{
YMMUSIC * m_info = ymMusicCreate();
ymMusicLoadMemory(m_info,file_buffer.get_ptr(), file_buffer.get_size());
ymMusicInfo_t info;
ymMusicGetInfo(m_info,&info);
p_info.info_set( "encoding", "synthesized" );
p_info.info_set( "codec", "YM" );
p_info.info_set_int( "channels", 1 );
p_info.meta_set( "title", pfc::stringcvt::string_utf8_from_ansi( info.pSongName) );
p_info.meta_set( "artist", pfc::stringcvt::string_utf8_from_ansi( info.pSongAuthor) );
p_info.meta_set( "comment", pfc::stringcvt::string_utf8_from_ansi( info.pSongComment) );
p_info.set_length( info.musicTimeInSec );
ymMusicDestroy(m_info);
}
示例14: Write
virtual /* [local] */ HRESULT STDMETHODCALLTYPE Write(
/* [size_is][in] */ const void *pv,
/* [in] */ ULONG cb,
/* [out] */ ULONG *pcbWritten)
{
t_size old_size = m_data.get_size(), new_size = m_position + cb;
if (new_size > old_size)
{
m_data.grow_size(new_size);
memset(&m_data.get_ptr()[old_size], 0,new_size-new_size);
}
memcpy(&m_data.get_ptr()[m_position], pv, cb);
m_position += cb;
if (pcbWritten)
*pcbWritten = cb;
return S_OK;
}
示例15: SetSize
virtual HRESULT STDMETHODCALLTYPE SetSize(
ULARGE_INTEGER libNewSize)
{
if (libNewSize.QuadPart > MAXDWORD)
return STG_E_INVALIDFUNCTION;
m_data.set_size((t_size)libNewSize.QuadPart);
return S_OK;
}