1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #include <sal/config.h>
22 #include <o3tl/safeint.hxx>
23 #include <tools/stream.hxx>
25 #include <sfx2/mieclip.hxx>
27 MSE40HTMLClipFormatObj::~MSE40HTMLClipFormatObj()
31 SvStream
* MSE40HTMLClipFormatObj::IsValid( SvStream
& rStream
)
37 sal_Int32 nStt
= -1, nEnd
= -1, nFragStart
= -1, nFragEnd
= -1;
40 rStream
.Seek(STREAM_SEEK_TO_BEGIN
);
43 if( rStream
.ReadLine( sLine
) &&
44 sLine
.getToken( 0, ':', nIndex
) == "Version" )
46 while( rStream
.ReadLine( sLine
) )
49 OString
sTmp(sLine
.getToken(0, ':', nIndex
));
50 if (sTmp
== "StartHTML")
51 nStt
= sLine
.copy(nIndex
).toInt32();
52 else if (sTmp
== "EndHTML")
53 nEnd
= sLine
.copy(nIndex
).toInt32();
54 else if (sTmp
== "StartFragment")
55 nFragStart
= sLine
.copy(nIndex
).toInt32();
56 else if (sTmp
== "EndFragment")
57 nFragEnd
= sLine
.copy(nIndex
).toInt32();
58 else if (sTmp
== "SourceURL")
59 sBaseURL
= OStringToOUString( sLine
.subView(nIndex
), RTL_TEXTENCODING_UTF8
);
61 if (nEnd
>= 0 && nStt
>= 0 &&
62 (!sBaseURL
.isEmpty() || rStream
.Tell() >= o3tl::make_unsigned(nStt
)))
74 pStrm
.reset( new SvMemoryStream( ( nEnd
- nStt
< 0x10000l
77 pStrm
->WriteStream( rStream
);
78 pStrm
->SetStreamSize( nEnd
- nStt
+ 1 );
79 pStrm
->Seek( STREAM_SEEK_TO_BEGIN
);
83 if (nFragStart
> 0 && nFragEnd
> 0 && nFragEnd
> nFragStart
)
85 size_t nSize
= nFragEnd
- nFragStart
+ 1;
88 rStream
.Seek(nFragStart
);
89 pStrm
.reset( new SvMemoryStream(nSize
) );
90 pStrm
->WriteStream( rStream
);
91 pStrm
->SetStreamSize(nSize
);
92 pStrm
->Seek(STREAM_SEEK_TO_BEGIN
);
100 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */