Open Chinese Convert 1.3.2
A project for conversion between Traditional and Simplified Chinese
Loading...
Searching...
No Matches
ConversionChain.hpp
1/*
2 * Open Chinese Convert
3 *
4 * Copyright 2010-2014 Carbo Kuo <byvoid@byvoid.com>
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18
19#pragma once
20
21#include <list>
22
23#include "Common.hpp"
24#include "Conversion.hpp"
25
26namespace opencc {
41class OPENCC_EXPORT ConversionChain {
42public:
44 ConversionChain(const std::list<ConversionPtr> _conversions);
45
50 SegmentsPtr Convert(const SegmentsPtr& input) const;
51
57 void AppendConvertedSegment(const char* segment, std::string* output) const;
58
65 void AppendConvertedSegment(std::string_view segment,
66 std::string* output) const;
67
73 std::vector<SegmentsPtr> ConvertWithTrace(const SegmentsPtr& input) const;
74
76 const std::list<ConversionPtr> GetConversions() const { return conversions; }
77
78private:
79 const std::list<ConversionPtr> conversions;
80};
81} // namespace opencc
ConversionChain(const std::list< ConversionPtr > _conversions)
Constructs a chain from an ordered list of conversions.
Definition ConversionChain.cpp:27
SegmentsPtr Convert(const SegmentsPtr &input) const
Passes input through every conversion in the chain sequentially and returns the final Segments.
Definition ConversionChain.cpp:30
void AppendConvertedSegment(const char *segment, std::string *output) const
Converts the null-terminated segment through all conversions and appends the result to output.
Definition ConversionChain.cpp:38
std::vector< SegmentsPtr > ConvertWithTrace(const SegmentsPtr &input) const
Converts input through the chain and records every intermediate Segments after each conversion stage.
Definition ConversionChain.cpp:94
const std::list< ConversionPtr > GetConversions() const
Returns the list of conversions in application order.
Definition ConversionChain.hpp:76