asffile.h
Go to the documentation of this file.
1 /**************************************************************************
2  copyright : (C) 2005-2007 by Lukáš Lalinský
3  email : lalinsky@gmail.com
4  **************************************************************************/
5 
6 /***************************************************************************
7  * This library is free software; you can redistribute it and/or modify *
8  * it under the terms of the GNU Lesser General Public License version *
9  * 2.1 as published by the Free Software Foundation. *
10  * *
11  * This library is distributed in the hope that it will be useful, but *
12  * WITHOUT ANY WARRANTY; without even the implied warranty of *
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
14  * Lesser General Public License for more details. *
15  * *
16  * You should have received a copy of the GNU Lesser General Public *
17  * License along with this library; if not, write to the Free Software *
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA *
19  * 02110-1301 USA *
20  * *
21  * Alternatively, this file is available under the Mozilla Public *
22  * License Version 1.1. You may obtain a copy of the License at *
23  * http://www.mozilla.org/MPL/ *
24  ***************************************************************************/
25 
26 #ifndef TAGLIB_ASFFILE_H
27 #define TAGLIB_ASFFILE_H
28 
29 #include "tag.h"
30 #include "tfile.h"
31 #include "taglib_export.h"
32 #include "asfproperties.h"
33 #include "asftag.h"
34 
35 namespace TagLib {
36 
38  namespace ASF {
39 
47  {
48  public:
49 
61  File(FileName file, bool readProperties = true, Properties::ReadStyle propertiesStyle = Properties::Average);
62 
74  File(IOStream *stream, bool readProperties = true, Properties::ReadStyle propertiesStyle = Properties::Average);
75 
79  virtual ~File();
80 
91  virtual Tag *tag() const;
92 
96  virtual Properties *audioProperties() const;
97 
103  virtual bool save();
104 
105  private:
106 
107  int readBYTE(bool *ok = 0);
108  int readWORD(bool *ok = 0);
109  unsigned int readDWORD(bool *ok = 0);
110  long long readQWORD(bool *ok = 0);
111  static ByteVector renderString(const String &str, bool includeLength = false);
112  String readString(int len);
113  void read(bool readProperties, Properties::ReadStyle propertiesStyle);
114 
115  friend class Attribute;
116  friend class Picture;
117 
118  class BaseObject;
119  class UnknownObject;
120  class FilePropertiesObject;
121  class StreamPropertiesObject;
122  class ContentDescriptionObject;
123  class ExtendedContentDescriptionObject;
124  class HeaderExtensionObject;
125  class MetadataObject;
126  class MetadataLibraryObject;
127 
128  class FilePrivate;
129  FilePrivate *d;
130  };
131 
132  }
133 
134 }
135 
136 #endif