blob: 779eddc22074cb4e5879e2e8528c28eaa522f53a [file] [log] [blame]
// Copyright 2010-2015, Google Inc.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above
// copyright notice, this list of conditions and the following disclaimer
// in the documentation and/or other materials provided with the
// distribution.
// * Neither the name of Google Inc. nor the names of its
// contributors may be used to endorse or promote products derived from
// this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#ifndef MOZC_COMPOSER_COMPOSITION_INTERFACE_H_
#define MOZC_COMPOSER_COMPOSITION_INTERFACE_H_
#include <set>
#include <string>
#include "composer/internal/transliterators.h"
namespace mozc {
namespace composer {
class Table;
class CompositionInput;
enum TrimMode {
TRIM, // "かn" => "か"
ASIS, // "かn" => "かn"
FIX, // "かn" => "かん"
};
class CompositionInterface {
public:
virtual ~CompositionInterface() {}
virtual size_t DeleteAt(size_t position) = 0;
virtual size_t InsertAt(size_t position, const string &input) = 0;
virtual size_t InsertKeyAndPreeditAt(size_t pos,
const string &key,
const string &preedit) = 0;
// Insert the given |input| to the composition at the given |position|
// and return the new position.
virtual size_t InsertInput(size_t position,
const CompositionInput &input) = 0;
virtual void Erase() = 0;
// Get the position on mode_to from position_from on mode_from.
virtual size_t ConvertPosition(
size_t position_from,
Transliterators::Transliterator transliterator_from,
Transliterators::Transliterator transliterator_to) = 0;
// TODO(komatsu): To be deleted.
virtual size_t SetDisplayMode(
size_t position,
Transliterators::Transliterator transliterator) = 0;
virtual void SetTransliterator(
size_t position_from,
size_t position_to,
Transliterators::Transliterator transliterator) = 0;
virtual Transliterators::Transliterator GetTransliterator(
size_t position) = 0;
virtual size_t GetLength() const = 0;
// Return string with the default translitarator of each char_chunk
// and TrimeMode::ASIS.
virtual void GetString(string *composition) const = 0;
// Return string with the specified transliterator and TrimeMode::FIX.
virtual void GetStringWithTransliterator(
Transliterators::Transliterator transliterator,
string *output) const = 0;
// Get string with consideration for ambiguity from pending input
virtual void GetExpandedStrings(string *base,
set<string> *expanded) const = 0;
virtual void GetExpandedStringsWithTransliterator(
Transliterators::Transliterator transliterator, string *base,
set<string> *expanded) const = 0;
// Return string with the specified trim mode and the current display mode.
virtual void GetStringWithTrimMode(TrimMode trim_mode,
string *output) const = 0;
// Return string with the default translitarator of each char_chunk
// and TrimMode::ASIS.
virtual void GetPreedit(size_t position,
string *left,
string *focused,
string *right) const = 0;
virtual void SetInputMode(Transliterators::Transliterator transliterator) = 0;
// Return true if the composition is adviced to be committed immediately.
virtual bool ShouldCommit() const = 0;
// Get clone of the composition.
// This class does NOT take the ownership of the return value.
//
// This interface implements Clone method instead of CopyFrom method because
// it is a little hard to implements CopyFrom using CompositionInterface
// without making CharChunk accessible from Composer.
// If we decided to discard this interface, we should refactor
// internal/composer_test.cc.
virtual CompositionInterface *Clone() const = 0;
// Set composition table.
// This class does NOT take the ownership of the table;
virtual void SetTable(const Table *table) = 0;
};
} // namespace composer
} // namespace mozc
#endif // MOZC_COMPOSER_COMPOSITION_INTERFACE_H_