summaryrefslogtreecommitdiff
path: root/sfntly/table/header.h
diff options
context:
space:
mode:
authorarthurhsu@google.com <arthurhsu@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-08 21:42:50 +0000
committerarthurhsu@google.com <arthurhsu@google.com@672e30a5-4c29-85ac-ac6d-611c735e0a51>2011-09-08 21:42:50 +0000
commit6b8e073e978eed96605da6f92d6db740a39864ba (patch)
tree4f024b418eda492f9cfe8e8f2603c7dfbd00c00d /sfntly/table/header.h
parentb54cce09c1fc2b09e2adae43d7eb017b47b0cccf (diff)
downloadsrc-6b8e073e978eed96605da6f92d6db740a39864ba.tar.gz
Advance C++ port to Sep 1 11 snapshot
Update test font to use OFL-compliant fonts git-svn-id: http://sfntly.googlecode.com/svn/trunk/cpp/src@71 672e30a5-4c29-85ac-ac6d-611c735e0a51
Diffstat (limited to 'sfntly/table/header.h')
-rw-r--r--sfntly/table/header.h108
1 files changed, 108 insertions, 0 deletions
diff --git a/sfntly/table/header.h b/sfntly/table/header.h
new file mode 100644
index 0000000..117da95
--- /dev/null
+++ b/sfntly/table/header.h
@@ -0,0 +1,108 @@
+/*
+ * Copyright 2011 Google Inc. All Rights Reserved.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#ifndef SFNTLY_CPP_SRC_SFNTLY_TABLE_HEADER_H_
+#define SFNTLY_CPP_SRC_SFNTLY_TABLE_HEADER_H_
+
+#include "sfntly/port/refcount.h"
+
+namespace sfntly {
+
+class Header : public RefCounted<Header> {
+ public:
+ // Make a partial header with only the basic info for an empty new table.
+ explicit Header(int32_t tag);
+
+ // Make a partial header with only the basic info for a new table.
+ Header(int32_t tag, int32_t length);
+
+ // Make a full header as read from an existing font.
+ Header(int32_t tag, int64_t checksum, int32_t offset, int32_t length);
+ virtual ~Header();
+
+ // Get the table tag.
+ int32_t tag() { return tag_; }
+
+ // Get the table offset. The offset is from the start of the font file.
+ int32_t offset() { return offset_; }
+
+ // Is the offset in the header valid. The offset will not be valid if the
+ // table was constructed during building and has no physical location in a
+ // font file.
+ bool offset_valid() { return offset_valid_; }
+
+ // Get the length of the table as recorded in the table record header.
+ int32_t length() { return length_; }
+
+ // Is the length in the header valid. The length will not be valid if the
+ // table was constructed during building and has no physical location in a
+ // font file.
+ bool length_valid() { return length_valid_; }
+
+ // Get the checksum for the table as recorded in the table record header.
+ int64_t checksum() { return checksum_; }
+
+ // Is the checksum valid. The checksum will not be valid if the table was
+ // constructed during building and has no physical location in a font file.
+ // Note that this does *NOT* check the validity of the checksum against
+ // the calculated checksum for the table data.
+ bool checksum_valid() { return checksum_valid_; }
+
+ // UNIMPLEMENTED: boolean equals(Object obj)
+ // int hashCode()
+ // string toString()
+
+ private:
+ int32_t tag_;
+ int32_t offset_;
+ bool offset_valid_;
+ int32_t length_;
+ bool length_valid_;
+ int64_t checksum_;
+ bool checksum_valid_;
+
+ friend class HeaderComparatorByOffset;
+ friend class HeaderComparatorByTag;
+};
+typedef Ptr<Header> HeaderPtr;
+
+class HeaderComparator {
+ public:
+ virtual ~HeaderComparator() {}
+ virtual bool operator()(const HeaderPtr h1,
+ const HeaderPtr h2) = 0;
+};
+
+class HeaderComparatorByOffset : public HeaderComparator {
+ public:
+ virtual ~HeaderComparatorByOffset() {}
+ virtual bool operator()(const HeaderPtr h1,
+ const HeaderPtr h2);
+};
+
+class HeaderComparatorByTag : public HeaderComparator {
+ public:
+ virtual ~HeaderComparatorByTag() {}
+ virtual bool operator()(const HeaderPtr h1,
+ const HeaderPtr h2);
+};
+
+typedef std::set<HeaderPtr, HeaderComparatorByOffset> HeaderOffsetSortedSet;
+typedef std::set<HeaderPtr, HeaderComparatorByTag> HeaderTagSortedSet;
+
+} // namespace sfntly
+
+#endif // SFNTLY_CPP_SRC_SFNTLY_TABLE_HEADER_H_