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 <tools/stream.hxx>
21 #include <tools/cachestr.hxx>
23 #include <sot/storage.hxx>
24 #include <sot/formats.hxx>
26 #include <sfx2/mieclip.hxx>
27 #include <sfx2/sfxuno.hxx>
29 MSE40HTMLClipFormatObj::~MSE40HTMLClipFormatObj()
34 SvStream
* MSE40HTMLClipFormatObj::IsValid( SvStream
& rStream
)
38 delete pStrm
, pStrm
= 0;
40 OString sLine
, sVersion
;
41 sal_Int32 nStt
= -1, nEnd
= -1, nFragStart
= -1, nFragEnd
= -1;
44 rStream
.Seek(STREAM_SEEK_TO_BEGIN
);
47 if( rStream
.ReadLine( sLine
) &&
48 sLine
.getToken( 0, ':', nIndex
) == "Version" )
50 sVersion
= sLine
.copy( nIndex
);
51 while( rStream
.ReadLine( sLine
) )
54 OString
sTmp(sLine
.getToken(0, ':', nIndex
));
55 if (sTmp
.equalsL(RTL_CONSTASCII_STRINGPARAM("StartHTML")))
56 nStt
= sLine
.copy(nIndex
).toInt32();
57 else if (sTmp
.equalsL(RTL_CONSTASCII_STRINGPARAM("EndHTML")))
58 nEnd
= sLine
.copy(nIndex
).toInt32();
59 else if (sTmp
.equalsL(RTL_CONSTASCII_STRINGPARAM("StartFragment")))
60 nFragStart
= sLine
.copy(nIndex
).toInt32();
61 else if (sTmp
.equalsL(RTL_CONSTASCII_STRINGPARAM("EndFragment")))
62 nFragEnd
= sLine
.copy(nIndex
).toInt32();
63 else if (sTmp
.equalsL(RTL_CONSTASCII_STRINGPARAM("SourceURL")))
64 sBaseURL
= S2U(sLine
.copy(nIndex
));
66 if (nEnd
>= 0 && nStt
>= 0 &&
67 (sBaseURL
.Len() || rStream
.Tell() >= static_cast<sal_Size
>(nStt
)))
79 pStrm
= new SvCacheStream( ( nEnd
- nStt
< 0x10000l
83 pStrm
->SetStreamSize( nEnd
- nStt
+ 1L );
84 pStrm
->Seek( STREAM_SEEK_TO_BEGIN
);
88 if (nFragStart
> 0 && nFragEnd
> 0 && nFragEnd
> nFragStart
)
90 sal_uIntPtr nSize
= static_cast<sal_uIntPtr
>(nFragEnd
- nFragStart
+ 1);
93 rStream
.Seek(nFragStart
);
94 pStrm
= new SvCacheStream(nSize
);
96 pStrm
->SetStreamSize(nSize
);
97 pStrm
->Seek(STREAM_SEEK_TO_BEGIN
);
105 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */