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 <classes/converter.hxx>
21 #include <rtl/ustrbuf.hxx>
26 * converts a sequence of PropertyValue to a sequence of NamedValue.
28 css::uno::Sequence
< css::beans::NamedValue
> Converter::convert_seqPropVal2seqNamedVal( const css::uno::Sequence
< css::beans::PropertyValue
>& lSource
)
30 sal_Int32 nCount
= lSource
.getLength();
31 css::uno::Sequence
< css::beans::NamedValue
> lDestination(nCount
);
32 auto lDestinationRange
= asNonConstRange(lDestination
);
33 for (sal_Int32 nItem
=0; nItem
<nCount
; ++nItem
)
35 lDestinationRange
[nItem
].Name
= lSource
[nItem
].Name
;
36 lDestinationRange
[nItem
].Value
= lSource
[nItem
].Value
;
42 * converts a sequence of unicode strings into a vector of such items
44 std::vector
<OUString
> Converter::convert_seqOUString2OUStringList( const css::uno::Sequence
< OUString
>& lSource
)
46 std::vector
<OUString
> lDestination
;
47 sal_Int32 nCount
= lSource
.getLength();
49 lDestination
.reserve(nCount
);
50 for (sal_Int32 nItem
= 0; nItem
< nCount
; ++nItem
)
52 lDestination
.push_back(lSource
[nItem
]);
58 OUString
Converter::convert_DateTime2ISO8601( const DateTime
& aSource
)
60 OUStringBuffer
sBuffer(25);
62 sal_Int32 nYear
= aSource
.GetYear();
63 sal_Int32 nMonth
= aSource
.GetMonth();
64 sal_Int32 nDay
= aSource
.GetDay();
66 sal_Int32 nHour
= aSource
.GetHour();
67 sal_Int32 nMin
= aSource
.GetMin();
68 sal_Int32 nSec
= aSource
.GetSec();
70 // write year formatted as "YYYY"
72 sBuffer
.append("000");
77 sBuffer
.append( nYear
);
79 // write month formatted as "MM"
83 sBuffer
.append( nMonth
);
85 // write day formatted as "DD"
89 sBuffer
.append( nDay
);
91 // write hours formatted as "hh"
95 sBuffer
.append( nHour
);
97 // write min formatted as "mm"
101 sBuffer
.append( nMin
);
103 // write sec formatted as "ss"
107 sBuffer
.append( nSec
);
112 return sBuffer
.makeStringAndClear();
115 } // namespace framework
117 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */