aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/pinyin/3rdparty/pinyin/include/sync.h
blob: bf42d1f147e827d6b5cfd7f8a6e443e3cc2ee384 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * 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 PINYINIME_INCLUDE_SYNC_H__
#define PINYINIME_INCLUDE_SYNC_H__

#define ___SYNC_ENABLED___

#ifdef ___SYNC_ENABLED___

#include "userdict.h"

namespace ime_pinyin {

// Class for user dictionary synchronization
// This class is not thread safe
// Normal invoking flow will be
//   begin() ->
//   put_lemmas() x N ->
//   {
//     get_lemmas() ->
//     [ get_last_got_count() ] ->
//     clear_last_got() ->
//   } x N ->
//   finish()
class Sync {
 public:
  Sync();
  ~Sync();

  static const int kUserDictMaxLemmaCount = 5000;
  static const int kUserDictMaxLemmaSize = 200000;
  static const int kUserDictRatio = 20;

  bool begin(const char * filename);

  // Merge lemmas downloaded from sync server into local dictionary
  // lemmas, lemmas string encoded in UTF16LE
  // len, length of lemmas string
  // Return how many lemmas merged successfully
  int put_lemmas(char16 * lemmas, int len);

  // Get local new user lemmas into UTF16LE string
  // str, buffer ptr to store new user lemmas
  // size, size of buffer
  // Return length of returned buffer in measure of UTF16LE
  int get_lemmas(char16 * str, int size);

  // Return lemmas count in last get_lemmas()
  int get_last_got_count();

  // Return total lemmas count need get_lemmas()
  int get_total_count();

  // Clear lemmas got by recent get_lemmas()
  void clear_last_got();

  void finish();

  int get_capacity();

 private:
  UserDict * userdict_;
  char * dictfile_;
  int last_count_;
};

}

#endif

#endif  // PINYINIME_INCLUDE_SYNC_H__