mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-27 20:59:36 +08:00
62 lines
1.8 KiB
C++
62 lines
1.8 KiB
C++
// Copyright 2008 Google Inc. All Rights Reserved.
|
|
// Author: scharron@google.com (Samuel Charron)
|
|
// 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.
|
|
|
|
#include "ccutil.h"
|
|
|
|
namespace tesseract {
|
|
CCUtil::CCUtil() :
|
|
params_(),
|
|
STRING_INIT_MEMBER(m_data_sub_dir,
|
|
"tessdata/", "Directory for data files", ¶ms_),
|
|
#ifdef _WIN32
|
|
STRING_INIT_MEMBER(tessedit_module_name, WINDLLNAME,
|
|
"Module colocated with tessdata dir", ¶ms_),
|
|
#endif
|
|
INT_INIT_MEMBER(ambigs_debug_level, 0, "Debug level for unichar ambiguities",
|
|
¶ms_),
|
|
BOOL_MEMBER(use_definite_ambigs_for_classifier, 0, "Use definite"
|
|
" ambiguities when running character classifier", ¶ms_),
|
|
BOOL_MEMBER(use_ambigs_for_adaption, 0, "Use ambigs for deciding"
|
|
" whether to adapt to a character", ¶ms_) {
|
|
}
|
|
|
|
CCUtil::~CCUtil() {
|
|
}
|
|
|
|
|
|
CCUtilMutex::CCUtilMutex() {
|
|
#ifdef _WIN32
|
|
mutex_ = CreateMutex(0, FALSE, 0);
|
|
#else
|
|
pthread_mutex_init(&mutex_, NULL);
|
|
#endif
|
|
}
|
|
|
|
void CCUtilMutex::Lock() {
|
|
#ifdef _WIN32
|
|
WaitForSingleObject(mutex_, INFINITE);
|
|
#else
|
|
pthread_mutex_lock(&mutex_);
|
|
#endif
|
|
}
|
|
|
|
void CCUtilMutex::Unlock() {
|
|
#ifdef _WIN32
|
|
ReleaseMutex(mutex_);
|
|
#else
|
|
pthread_mutex_unlock(&mutex_);
|
|
#endif
|
|
}
|
|
|
|
CCUtilMutex tprintfMutex; // should remain global
|
|
} // namespace tesseract
|