Last change
on this file since 5934 was
5934,
checked in by cameron, 11 months ago
|
Multithreaded simple RE mode initial check-in
|
File size:
1.3 KB
|
Line | |
---|
1 | /* |
---|
2 | * Copyright (c) 2017 International Characters. |
---|
3 | * This software is licensed to the public under the Open Software License 3.0. |
---|
4 | */ |
---|
5 | #ifndef MULTIPLEX_CCS_H |
---|
6 | #define MULTIPLEX_CCS_H |
---|
7 | |
---|
8 | #include <vector> |
---|
9 | #include <cc/alphabet.h> |
---|
10 | |
---|
11 | namespace re { class CC; } |
---|
12 | |
---|
13 | namespace cc { |
---|
14 | |
---|
15 | class MultiplexedAlphabet : public Alphabet { |
---|
16 | public: |
---|
17 | MultiplexedAlphabet(std::string alphabetName, const std::vector<re::CC *> CCs); |
---|
18 | static inline bool classof(const Alphabet * a) { |
---|
19 | return a->getClassTypeId() == ClassTypeId::MultiplexedAlphabet; |
---|
20 | } |
---|
21 | static inline bool classof(const void *) {return false;} |
---|
22 | |
---|
23 | const unsigned getSize() const override {return mUnicodeSets.size() + 1;} |
---|
24 | |
---|
25 | const Alphabet * getSourceAlphabet() const { |
---|
26 | return mSourceAlphabet; |
---|
27 | } |
---|
28 | |
---|
29 | const std::vector<std::vector<unsigned>> & getExclusiveSetIDs() const { |
---|
30 | return mExclusiveSetIDs; |
---|
31 | } |
---|
32 | |
---|
33 | const std::vector<re::CC *> & getMultiplexedCCs() const { |
---|
34 | return mMultiplexedCCs; |
---|
35 | } |
---|
36 | |
---|
37 | re::CC * transformCC(const re::CC * sourceCC) const; |
---|
38 | |
---|
39 | re::CC * invertCC(const re::CC * transformedCC) const; |
---|
40 | private: |
---|
41 | const Alphabet * mSourceAlphabet; |
---|
42 | const std::vector<re::CC *> mUnicodeSets; |
---|
43 | std::vector<std::vector<unsigned>> mExclusiveSetIDs; |
---|
44 | std::vector<re::CC *> mMultiplexedCCs; |
---|
45 | }; |
---|
46 | } |
---|
47 | |
---|
48 | |
---|
49 | #endif |
---|
Note: See
TracBrowser
for help on using the repository browser.