ProteoWizard
Main Page
Namespaces
Classes
Files
File List
File Members
pwiz
data
msdata
Serializer_mzXML.hpp
Go to the documentation of this file.
1
//
2
// $Id: Serializer_mzXML.hpp 1189 2009-08-14 17:36:06Z chambm $
3
//
4
//
5
// Original author: Darren Kessner <darren@proteowizard.org>
6
//
7
// Copyright 2007 Spielberg Family Center for Applied Proteomics
8
// Cedars-Sinai Medical Center, Los Angeles, California 90048
9
//
10
// Licensed under the Apache License, Version 2.0 (the "License");
11
// you may not use this file except in compliance with the License.
12
// You may obtain a copy of the License at
13
//
14
// http://www.apache.org/licenses/LICENSE-2.0
15
//
16
// Unless required by applicable law or agreed to in writing, software
17
// distributed under the License is distributed on an "AS IS" BASIS,
18
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
// See the License for the specific language governing permissions and
20
// limitations under the License.
21
//
22
23
24
#ifndef _SERIALIZER_MZXML_HPP_
25
#define _SERIALIZER_MZXML_HPP_
26
27
28
#include "
pwiz/utility/misc/Export.hpp
"
29
#include "
MSData.hpp
"
30
#include "
BinaryDataEncoder.hpp
"
31
#include "
pwiz/utility/misc/IterationListener.hpp
"
32
33
34
namespace
pwiz {
35
namespace
msdata {
36
37
38
/// MSData <-> mzXML stream serialization
39
class
PWIZ_API_DECL
Serializer_mzXML
40
{
41
public
:
42
43
/// Serializer_mzXML configuration
44
struct
PWIZ_API_DECL
Config
45
{
46
/// configuration for binary data encoding in write()
47
/// note: byteOrder is ignored (mzXML always big endian)
48
BinaryDataEncoder::Config
binaryDataEncoderConfig
;
49
50
/// (indexed==true): read/write with <index>
51
bool
indexed
;
52
53
Config
() : indexed(true) {}
54
};
55
56
/// constructor
57
Serializer_mzXML
(
const
Config& config = Config());
58
59
/// write MSData object to ostream as mzXML;
60
/// iterationListenerRegistry may be used to receive progress updates
61
void
write
(std::ostream& os,
const
MSData
& msd,
62
const
pwiz::util::IterationListenerRegistry
* iterationListenerRegistry = 0)
const
;
63
64
/// read in MSData object from an mzXML istream
65
/// note: istream may be managed by MSData's SpectrumList, to allow for
66
/// lazy evaluation of Spectrum data
67
void
read
(boost::shared_ptr<std::istream> is,
MSData
& msd)
const
;
68
69
private
:
70
class
Impl;
71
boost::shared_ptr<Impl>
impl_
;
72
Serializer_mzXML
(
Serializer_mzXML
&);
73
Serializer_mzXML
& operator=(
Serializer_mzXML
&);
74
};
75
76
77
PWIZ_API_DECL
std::ostream&
operator<<
(std::ostream& os,
const
Serializer_mzXML::Config
& config);
78
79
80
}
// namespace msdata
81
}
// namespace pwiz
82
83
84
#endif // _SERIALIZER_MZXML_HPP_
85
Generated on Mon Nov 26 2012 18:05:48 for ProteoWizard by
1.8.1.1