Compare commits

...

32 Commits

Author SHA1 Message Date
4d955bb846 new cmake 2025-04-29 21:50:37 +03:00
31bacbedae new PIP 2024-11-28 12:36:47 +03:00
a3e88f792d apply some code analyzer recommendations 2024-11-20 20:01:58 +03:00
b65bf5e640 icon 2024-11-02 14:15:42 +03:00
0c36565aec migrate to PIP v4.1 2024-10-22 09:59:56 +03:00
b6898b96f7 shorter thread name 2024-09-17 16:24:48 +03:00
4f006072e8 migrate to PIP v4 2024-07-30 14:18:39 +03:00
472591fbf8 new PIP 2023-07-06 20:10:17 +03:00
f4be39d461 .clang-format 2023-05-04 14:14:01 +03:00
24c69edb82 receive with UTF fix 2023-03-13 22:13:57 +03:00
e1629897ed non-Qt 2023-03-13 14:36:17 +03:00
f5d4423817 Merge branch 'master' of https://git.shs.tools/SHS/cd 2023-03-13 14:33:28 +03:00
31cc50f4b9 non-Qt 2023-03-13 14:33:23 +03:00
e5a46097f1 qcd graphic buttons 2023-01-30 22:20:57 +03:00
cf1e809290 .editorconfig 2022-12-16 16:44:29 +03:00
2622737a52 code format 2022-12-14 14:13:33 +03:00
37480c9d1f add .clang-format file 2022-12-12 12:41:29 +03:00
4bb2cb414c missing include 2022-12-12 10:19:13 +03:00
Бычков Андрей
c21f3c3c2d remove deprecated pitimer functions 2022-11-10 15:29:58 +03:00
fcaddf6ec8 override 2022-08-10 23:34:00 +03:00
Бычков Андрей
6e11617ce8 pimap iterators 2022-08-09 15:55:14 +03:00
Бычков Андрей
c5824795e6 Merge branch 'master' of https://git.shs.tools/SHS/cd 2022-08-08 16:46:09 +03:00
Бычков Андрей
87dcb0db6a picout 2022-08-08 16:45:45 +03:00
faa1802095 Merge pull request 'cmake refactoring' (#1) from cmake_refactor into master
Reviewed-on: https://git.shs.tools/SHS/cd/pulls/1
2022-08-08 16:42:28 +03:00
e77ad379ac cmake refactoring 2022-08-08 15:36:54 +03:00
556191d443 new SHSTKMacros, PIP 2.99 2022-08-07 22:06:57 +03:00
Бычков Андрей
216bd5afd0 fix for pip3 2022-08-05 17:04:40 +03:00
Бычков Андрей
7a16d76753 update for PIP3 2022-07-29 16:50:38 +03:00
Бычков Андрей
4d9029babe complex macros with ; 2022-07-25 16:22:16 +03:00
4fe9489484 small fix 2022-07-22 14:46:46 +03:00
Бычков Андрей
be1ccc4f0a remove PIString operator << 2022-07-22 14:34:11 +03:00
b4bd6646b4 new PIP support 2022-06-11 10:39:09 +03:00
46 changed files with 1722 additions and 1557 deletions

224
.clang-format Normal file
View File

@@ -0,0 +1,224 @@
---
Language: Cpp
AccessModifierOffset: -4
AlignAfterOpenBracket: Align
AlignArrayOfStructures: Left
AlignConsecutiveAssignments:
Enabled: true
AcrossEmptyLines: true
AcrossComments: true
AlignCompound: false
PadOperators: true
AlignConsecutiveBitFields:
Enabled: true
AcrossEmptyLines: false
AcrossComments: true
AlignCompound: false
PadOperators: true
AlignConsecutiveDeclarations:
Enabled: false
AcrossEmptyLines: false
AcrossComments: false
AlignCompound: false
PadOperators: false
AlignConsecutiveMacros:
Enabled: true
AcrossEmptyLines: true
AcrossComments: true
AlignCompound: false
PadOperators: true
AlignEscapedNewlines: Left
AlignOperands: Align
AlignTrailingComments: true
AllowAllArgumentsOnNextLine: false
AllowAllParametersOfDeclarationOnNextLine: false
AllowShortEnumsOnASingleLine: false
AllowShortBlocksOnASingleLine: Empty
AllowShortCaseLabelsOnASingleLine: true
AllowShortFunctionsOnASingleLine: Inline
AllowShortLambdasOnASingleLine: All
AllowShortIfStatementsOnASingleLine: WithoutElse
AllowShortLoopsOnASingleLine: false
AlwaysBreakAfterDefinitionReturnType: None
AlwaysBreakAfterReturnType: None
AlwaysBreakBeforeMultilineStrings: false
AlwaysBreakTemplateDeclarations: Yes
AttributeMacros:
- __capability
BinPackArguments: false
BinPackParameters: false
BraceWrapping:
AfterCaseLabel: false
AfterClass: false
AfterControlStatement: Never
AfterEnum: false
AfterFunction: false
AfterNamespace: false
AfterObjCDeclaration: false
AfterStruct: false
AfterUnion: false
AfterExternBlock: false
BeforeCatch: false
BeforeElse: false
BeforeLambdaBody: false
BeforeWhile: false
IndentBraces: false
SplitEmptyFunction: false
SplitEmptyRecord: false
SplitEmptyNamespace: true
BreakBeforeBinaryOperators: None
BreakBeforeConceptDeclarations: Always
BreakBeforeBraces: Attach
BreakInheritanceList: BeforeComma
BreakBeforeTernaryOperators: true
BreakConstructorInitializers: BeforeComma
BreakAfterJavaFieldAnnotations: false
BreakStringLiterals: true
ColumnLimit: 140
CommentPragmas: '^ IWYU pragma:'
QualifierAlignment: Leave
CompactNamespaces: false
ConstructorInitializerIndentWidth: 4
ContinuationIndentWidth: 4
Cpp11BracedListStyle: true
DeriveLineEnding: false
DerivePointerAlignment: false
DisableFormat: false
EmptyLineAfterAccessModifier: Never
EmptyLineBeforeAccessModifier: Always
ExperimentalAutoDetectBinPacking: false
PackConstructorInitializers: CurrentLine
BasedOnStyle: ''
ConstructorInitializerAllOnOneLineOrOnePerLine: true
AllowAllConstructorInitializersOnNextLine: true
FixNamespaceComments: true
ForEachMacros:
- foreach
- Q_FOREACH
- BOOST_FOREACH
- piForeach
- piForeachC
- piForeachR
- piForeachRC
- piForeachCR
IfMacros:
- KJ_IF_MAYBE
IncludeBlocks: Regroup
IncludeCategories:
- Regex: '^"(llvm|llvm-c|clang|clang-c)/'
Priority: 2
SortPriority: 0
CaseSensitive: false
- Regex: '^(<|"(gtest|gmock|isl|json)/)'
Priority: 3
SortPriority: 0
CaseSensitive: false
- Regex: '.*'
Priority: 1
SortPriority: 0
CaseSensitive: false
IncludeIsMainRegex: '(Test)?$'
IncludeIsMainSourceRegex: ''
IndentAccessModifiers: false
IndentCaseLabels: false
IndentCaseBlocks: false
IndentGotoLabels: false
IndentPPDirectives: AfterHash
IndentExternBlock: NoIndent
IndentRequiresClause: true
IndentWidth: 4
IndentWrappedFunctionNames: false
InsertBraces: false
InsertTrailingCommas: Wrapped
JavaScriptQuotes: Leave
JavaScriptWrapImports: true
KeepEmptyLinesAtTheStartOfBlocks: false
LambdaBodyIndentation: Signature
MacroBlockBegin: "PRIVATE_DEFINITION_START|STATIC_INITIALIZER_BEGIN"
MacroBlockEnd: "PRIVATE_DEFINITION_END|STATIC_INITIALIZER_END"
MaxEmptyLinesToKeep: 2
NamespaceIndentation: None
ObjCBinPackProtocolList: Auto
ObjCBlockIndentWidth: 2
ObjCBreakBeforeNestedBlockParam: true
ObjCSpaceAfterProperty: false
ObjCSpaceBeforeProtocolList: true
PenaltyBreakAssignment: 2
PenaltyBreakBeforeFirstCallParameter: 19
PenaltyBreakComment: 300
PenaltyBreakFirstLessLess: 120
PenaltyBreakOpenParenthesis: 0
PenaltyBreakString: 1000
PenaltyBreakTemplateDeclaration: 10
PenaltyExcessCharacter: 1000000
PenaltyReturnTypeOnItsOwnLine: 60
PenaltyIndentedWhitespace: 0
PointerAlignment: Middle
PPIndentWidth: 2
ReferenceAlignment: Middle
ReflowComments: true
RemoveBracesLLVM: false
RequiresClausePosition: OwnLine
SeparateDefinitionBlocks: Leave
ShortNamespaceLines: 1
SortIncludes: CaseSensitive
SortJavaStaticImport: Before
SortUsingDeclarations: true
SpaceAfterCStyleCast: false
SpaceAfterLogicalNot: false
SpaceAfterTemplateKeyword: false
SpaceBeforeAssignmentOperators: true
SpaceBeforeCaseColon: false
SpaceBeforeCpp11BracedList: false
SpaceBeforeCtorInitializerColon: false
SpaceBeforeInheritanceColon: false
SpaceBeforeParens: ControlStatementsExceptControlMacros
SpaceBeforeParensOptions:
AfterControlStatements: true
AfterForeachMacros: false
AfterFunctionDefinitionName: false
AfterFunctionDeclarationName: false
AfterIfMacros: false
AfterOverloadedOperator: false
AfterRequiresInClause: false
AfterRequiresInExpression: false
BeforeNonEmptyParentheses: false
SpaceAroundPointerQualifiers: Both
SpaceBeforeRangeBasedForLoopColon: false
SpaceInEmptyBlock: false
SpaceInEmptyParentheses: false
SpacesBeforeTrailingComments: 1
SpacesInAngles: Never
SpacesInConditionalStatement: false
SpacesInContainerLiterals: false
SpacesInCStyleCastParentheses: false
SpacesInLineCommentPrefix:
Minimum: 1
Maximum: -1
SpacesInParentheses: false
SpacesInSquareBrackets: false
SpaceBeforeSquareBrackets: false
BitFieldColonSpacing: After
Standard: c++11
StatementAttributeLikeMacros:
- Q_EMIT
- PIMETA
StatementMacros:
- Q_UNUSED
- QT_REQUIRE_VERSION
- PRIVATE_DECLARATION
- NO_COPY_CLASS
- FOREVER_WAIT
- WAIT_FOREVER
TabWidth: 4
UseCRLF: false
UseTab: AlignWithSpaces
WhitespaceSensitiveMacros:
- STRINGIZE
- PP_STRINGIZE
- BOOST_PP_STRINGIZE
- NS_SWIFT_NAME
- CF_SWIFT_NAME
- PIMETA
...

6
.editorconfig Normal file
View File

@@ -0,0 +1,6 @@
root = true
[*.{h,c,cpp}]
charset = utf-8
indent_style = tab
tab_width = 4

View File

@@ -1,21 +1,21 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.13)
cmake_policy(SET CMP0017 NEW) # need include() with .cmake
project(cd)
set(cd_MAJOR 1)
set(cd_MINOR 1)
set(cd_REVISION 0)
set(cd_SUFFIX )
set(cd_COMPANY SHS)
set(cd_DOMAIN org.SHS)
project(CD)
set(CD_MAJOR 1)
set(CD_MINOR 1)
set(CD_REVISION 1)
set(CD_SUFFIX )
set(CD_COMPANY SHS)
set(CD_DOMAIN org.SHS)
if ("x${CMAKE_MODULE_PATH}" STREQUAL "x")
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")
endif()
find_package(PIP REQUIRED)
find_package(PIP 4.0 REQUIRED)
find_package(QAD)
include(SHSTKMacros)
shstk_begin_project(cd CD)
shstk_begin_project(CD)
if(QAD_FOUND)
include(QtWraps)
include(SHSTKQtMacros)
@@ -29,12 +29,12 @@ if(QAD_FOUND)
option(UTILS "Build various utils" ${_plugins_default_})
macro(cd_library NAME _MODULES _LIBS)
shstk_qad_project(cd_${NAME} FALSE "cd" "${_MODULES}" "${_LIBS}" ${ARGN})
shstk_qad_project(cd_${NAME} FALSE "CD" "${_MODULES}" "${_LIBS}" ${ARGN})
shstk_qad_install("cd" FALSE cd_${NAME} "${out_HDR}" "out_QM")
endmacro()
macro(cd_application NAME _MODULES _LIBS)
shstk_qad_project(${NAME} TRUE "cd" "${_MODULES}" "${_LIBS}" ${ARGN})
shstk_qad_project(${NAME} TRUE "CD" "${_MODULES}" "${_LIBS}" ${ARGN})
shstk_qad_install("cd" TRUE ${NAME} "" "out_QM")
endmacro()
@@ -42,15 +42,15 @@ if(QAD_FOUND)
shstk_qad_plugin(cd_${NAME} "${_MODULES}" "cd_${NAME};${_LIBS}")
endmacro()
shstk_install(cd FALSE "" "${cd_VERSION_FILE}")
file(GLOB CMAKES "cmake/*.cmake" "cmake/*.in")
install(FILES ${CMAKES} DESTINATION ${CMAKE_ROOT}/Modules)
set(_qt_libs cd_core)
set(_qt_plugs)
set(_qt_apps )
endif()
shstk_install(cd FALSE "" "${CD_VERSION_FILE}")
file(GLOB CMAKES "cmake/*.cmake" "cmake/*.in")
install(FILES ${CMAKES} DESTINATION ${CMAKE_ROOT}/Modules)
add_subdirectory(libs)
if (UTILS AND QAD_FOUND)
add_subdirectory(utils)
@@ -63,9 +63,9 @@ endif()
message("----------CD-----------")
message(" Build for ${QtVersions}")
message(" Version: ${cd_VERSION} ")
message(" Linkage: ${cd_LIB_TYPE_MSG}")
message(" Type : ${cd_BUILD_TYPE}")
message(" Version: ${CD_VERSION} ")
message(" Linkage: ${CD_LIB_TYPE_MSG}")
message(" Type : ${CD_BUILD_TYPE}")
if (NOT LOCAL)
message(" Install: \"${CMAKE_INSTALL_PREFIX}\"")
else()

View File

@@ -12,17 +12,14 @@ cmake_policy(SET CMP0011 NEW) # don`t affect includer policies
cmake_policy(SET CMP0020 NEW) # Automatically link Qt executables to qtmain target on Windows
find_package(PIP REQUIRED)
find_package(QAD QUIET)
include(QtWraps)
include(SHSTKMacros)
shstk_is_parent_exists(hasParent PARENT_DIRECTORY)
shstk_set_find_dirs(cd)
set(_SEARCH_DIR ${cd_LIBDIR})
shstk_set_find_dirs(CD)
if (NOT BUILDING_cd)
list(APPEND _SEARCH_DIR $ENV{SMSDK_DIR}/lib)
shstk_find_header(cd CD "cd_version.h" "")
if (NOT BUILDING_CD)
shstk_find_header(CD "cd_version.h" ${CD_INCDIR})
endif()
if(CD_FIND_VERSION VERSION_GREATER CD_VERSION)
@@ -37,9 +34,9 @@ set( __inc_core "")
set(__libs_core "")
set(__deps_core "PIP")
if (BUILDING_cd)
if (BUILDING_CD)
if (NOT SET_TARGETS_cd)
if (NOT SET_TARGETS_CD)
#message("create aliases")
foreach (_l ${__libs})
set(_m ${__module_${_l}})
@@ -55,12 +52,12 @@ else()
#message("create interfaces")
foreach (_l ${__libs})
set(_m ${__module_${_l}})
find_library(CD_LIBRARY_${_l} cd_${_l} HINTS ${_SEARCH_DIR})
find_library(CD_LIBRARY_${_l} cd_${_l} HINTS ${CD_LIBDIR})
if((NOT TARGET CD::${_m}) AND CD_LIBRARY_${_l})
add_library(CD::${_m} UNKNOWN IMPORTED)
set_target_properties(CD::${_m} PROPERTIES
IMPORTED_LOCATION "${CD_LIBRARY_${_l}}"
INTERFACE_INCLUDE_DIRECTORIES "${cd_INCLUDES};${__inc_${_l}}"
INTERFACE_INCLUDE_DIRECTORIES "${CD_INCLUDES};${__inc_${_l}}"
INTERFACE_LINK_LIBRARIES "${__deps_${_l}};${__libs_${_l}}")
#message("imported CD::${_m} = ${CD_LIBRARY_${_l}} ${__deps_${_l}} ${__libs_${_l}} ${__inc_${_l}}")
endif()
@@ -71,6 +68,7 @@ endif()
if (QAD_FOUND OR BUILDING_qad)
include(QtWraps)
set(__libs "qt")
set(__module_qt Qt)
@@ -78,10 +76,10 @@ if (QAD_FOUND OR BUILDING_qad)
set(__libs_qt "")
set(__deps_qt "QAD::PIQt;QAD::Graphic;CD::Core")
if (BUILDING_cd)
if (BUILDING_CD)
if (NOT SET_TARGETS_cd)
set(SET_TARGETS_cd ON CACHE BOOL "")
if (NOT SET_TARGETS_CD)
set(SET_TARGETS_CD ON CACHE BOOL "")
#message("create aliases")
foreach(_l ${__libs})
foreach(_v ${_QT_VERSIONS_})
@@ -102,7 +100,7 @@ if (QAD_FOUND OR BUILDING_qad)
foreach(_l ${__libs})
foreach(_v ${_QT_VERSIONS_})
set(_m ${__module_${_l}})
find_library(CD_LIBRARY_${_l}${_v} cd_${_l}${_v} HINTS ${cd_LIBDIR})
find_library(CD_LIBRARY_${_l}${_v} cd_${_l}${_v} HINTS ${CD_LIBDIR})
#message("found ${_l}${_v} = ${CD_LIBRARY_${_l}${_v}}")
if((NOT TARGET CD::${_m}${_v}) AND CD_LIBRARY_${_l}${_v})
#message("imported CD::${_m}${_v} = ${CD_LIBRARY_${_l}${_v}}")
@@ -118,7 +116,7 @@ if (QAD_FOUND OR BUILDING_qad)
endforeach()
set_target_properties(CD::${_m}${_v} PROPERTIES
IMPORTED_LOCATION "${CD_LIBRARY_${_l}${_v}}"
INTERFACE_INCLUDE_DIRECTORIES "${cd_INCLUDES}"
INTERFACE_INCLUDE_DIRECTORIES "${CD_INCLUDES}"
INTERFACE_LINK_LIBRARIES "${_deps}")
endif()
endforeach()

View File

@@ -1,17 +1,17 @@
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.13)
project(cd_core)
include_directories(${CMAKE_CURRENT_BINARY_DIR} ${CMAKE_CURRENT_SOURCE_DIR})
file(GLOB CPPS "cdutils_*.cpp")
file(GLOB HDRS "cdutils_*.h")
import_version(${PROJECT_NAME} cd)
set_deploy_property(${PROJECT_NAME} ${cd_LIB_TYPE}
import_version(${PROJECT_NAME} CD)
set_deploy_property(${PROJECT_NAME} ${CD_LIB_TYPE}
LABEL "Core CD library"
FULLNAME "${cd_DOMAIN}.${PROJECT_NAME}"
COMPANY "${cd_COMPANY}"
FULLNAME "${CD_DOMAIN}.${PROJECT_NAME}"
COMPANY "${CD_COMPANY}"
INFO "Control & Debug library")
make_rc(${PROJECT_NAME} _RC)
add_library(${PROJECT_NAME} ${cd_LIB_TYPE} ${CPPS} ${HDRS} ${_RC})
add_library(${PROJECT_NAME} ${CD_LIB_TYPE} ${CPPS} ${HDRS} ${_RC})
target_include_directories(${PROJECT_NAME} PUBLIC ${CMAKE_CURRENT_SOURCE_DIR} ${CMAKE_CURRENT_BINARY_DIR})
target_link_libraries(${PROJECT_NAME} PIP)
generate_export_header(${PROJECT_NAME})

View File

@@ -1,4 +1,5 @@
#include "cdutils_c.h"
#include "cdutils_core.h"
using namespace CDUtils;
@@ -6,8 +7,7 @@ using namespace CDUtils;
CInterface C;
CInterface::CInterface(): Interface(CDType::cdC) {
}
CInterface::CInterface(): Interface(CDType::cdC) {}
void CInterface::sendCommand(const CDType & c) {
@@ -26,13 +26,12 @@ void CInterface::autoConnect(PIObject * o, const PIString & prefix) {
if (!PIObject::__meta_data().contains(cid)) return;
PIMap<PIString, Handler> eh_map;
PIObject::__MetaData & md(PIObject::__meta_data()[cid]);
PIMap<const void * , __MetaFunc>::const_iterator it;
for (it = md.eh_func.constBegin(); it != md.eh_func.constEnd(); ++it) {
for (auto it = md.eh_func.begin(); it != md.eh_func.end(); ++it) {
eh_map[it.value().func_name] = (Handler)it.value().addr;
// piCout << "func" << it.value().func_name;
}
PIVector<CDType *> cl = C.root().children();
piForeachC (CDType * c, cl) {
for (const auto * c: cl) {
PIString cp = prefix + c->pathString().join("_");
if (cp.isEmpty()) continue;
if (!eh_map.contains(cp)) continue;

View File

@@ -20,26 +20,25 @@
#ifndef CDUTILS_C_H
#define CDUTILS_C_H
#include "cdutils_core.h"
#include "cdutils_interface.h"
#include "cd_core_export.h"
namespace CDUtils {
class CD_CORE_EXPORT CInterface: public Interface
{
PIOBJECT_SUBCLASS(CInterface, Interface)
class CD_CORE_EXPORT CInterface: public Interface {
PIOBJECT_SUBCLASS(CInterface, Interface);
public:
CInterface();
void sendCommand(const CDType & c);
void connect(const CDType & c, PIObject * o, Handler eh);
void autoConnect(PIObject * o, const PIString & prefix = PIStringAscii("c_"));
};
}
} // namespace CDUtils
extern CD_CORE_EXPORT CDUtils::CInterface C;

View File

@@ -1,14 +1,14 @@
#include "cdutils_core.h"
#include "cdutils_parser.h"
#include "piconfig.h"
#include "piiobytearray.h"
#include "piiostring.h"
#include "pifile.h"
#include "piliterals_time.h"
using namespace CDUtils;
const char CDCore::app_config[] =
"include = cd_ip.conf\n\
const char CDCore::app_config[] = "include = cd_ip.conf\n\
port_rec = 2\n\
port_send = 1\n\
[connection]\n\
@@ -17,8 +17,7 @@ const char CDCore::app_config[] =
connectionmodel = AAAM2Xja7VXLTttAFD12QpsikKjUSixYlLbKEpIUtVIlVEfqhk2FWuiGRRolUYtoHgrmpYiv6IItf8AveMMH9E/YsG6Ph3sde5hGoQoblLGuPHfunTPjc49nADxDA110+LTYC7FrPCAPeAO+vZu+aX7c/8PGd45WCJC0OGcfT6FDnmfSTPtwhZFt3HjgDs/Qtu5jPbZHtI/x50XfIzMQbdwEolbg9INP4ku++myPaUtCHYRaT2j1ldIh3VP60/Qff8vSfXLu9BP6JX9K/0TVH6jqVe22P1X/fao/oddWu/paDs1vBf9Jv/EZ91clbyHqv7BL6sscDOd4v4WTqs6jzaHGJ8QJerxlpJSpdZ7IWFJvDW7I2JxZqIM62k6A57RZmMQGmlyrxdV+WGBnmR01mXPI267hBKwp4FeBeo9VPtssxyb7rzHg1B7T9nCMU45U8BZlWuVWtIcD/CRGOqtsbW09851tXsHN0UTlLIAdASjSXnLyLn+H7L2+xbGYvC63Ezqg543egkLmn8qnRF6USbM4Qp9godkhzI777Ne5bCIt/5UtGz2o/yGby0nKpjqmbOa1ynkjmyzIrzvIZUeBPjvlUmbh32EFJbGyJZhR8YcvlS+3TpjhqeWSyvUkpbI9plSWtcKLcsK05beOJVEnhaEFfHEH+RwpeMcpn1JKGqWMNOL+G6wZyahlpdVOtufKfbDS+guLke9O\n\
";
const char CDCore::pult_config[] =
"include = cd_ip.conf\n\
const char CDCore::pult_config[] = "include = cd_ip.conf\n\
port_rec = 1\n\
port_send = 2\n\
[connection]\n\
@@ -55,12 +54,11 @@ __Core_Initializer__::~__Core_Initializer__() {
}
CDCore::CDCore() {
setName("CDCore");
x_timer.setName("__S__.CDCore.x_timer");
x_timer.setName("_S.CDCore.x_timer");
datatr.setPacketSize(960);
cout_buffer_id = PICout::registerExternalBufferID();
CONNECTU(&connection, dataReceivedEvent, this, dataReceived);
CONNECTU(PICout::Notifier::object(), finished, this, piCoutFinished);
/*PIString s(app_config);
@@ -94,10 +92,10 @@ CDCore::CDCore() {
CDCore::~CDCore() {
x_timer.stop(true);
x_timer.stopAndWait();
datatr.stop();
sendt.stop();
sendt.waitForFinish(10);
sendt.waitForFinish(100_ms);
connection.stop();
}
@@ -110,12 +108,11 @@ void CDCore::cd_write(CDSection * cd, PIIODevice * d) {
void CDCore::cd_read(CDSection * cd, PIIODevice * d) {
PIConfig conf(d, PIIODevice::ReadOnly);
cd->read(&(conf.rootEntry()));
if (cd->cd_type_ == CDType::cdX)
x_selected = cd->collectX();
if (cd->cd_type_ == CDType::cdX) x_selected = cd->collectX();
initRoot(cd);
raiseChangedGlobal(cd->cd_type_);
/*PIVector<PIIODevice * > ds = connection.allDevices();
piForeach(PIIODevice * d, ds) {
for (PIIODevice * d: ds) {
if (d)
piCoutObj << d->constructFullPath() << d->isOpened();
}*/
@@ -218,8 +215,7 @@ void CDCore::init(const PIString & configuration, bool pult) {
void CDCore::stop() {
x_timer.stop();
x_timer.waitForFinish(1000);
x_timer.stopAndWait();
connection.stop();
}
@@ -232,14 +228,12 @@ void CDCore::release() {
void CDCore::startX(double freq) {
// piCout << "start x" << x_timer.isRunning() << freq;
if (!x_timer.isRunning())
x_timer.start(1000. / piMaxd(freq, 0.01));
if (!x_timer.isRunning()) x_timer.start(piMax(PISystemTime::Frequency::fromHertz(freq), 0.01_Hz));
}
void CDCore::stopX() {
x_timer.stop();
x_timer.waitForFinish(1000);
x_timer.stopAndWait();
}
@@ -327,29 +321,37 @@ void CDCore::sendThread() {
bool ok = datatr.send(send_data);
switch (h.type) {
case CD_KSend:
if (ok) K_Sended();
else K_SendFail();
if (ok)
K_Sended();
else
K_SendFail();
break;
case CD_KQuery:
if (!ok) K_ReceiveFail();
break;
case CD_XSend:
if (ok) X_Sended();
else X_SendFail();
if (ok)
X_Sended();
else
X_SendFail();
break;
case CD_XQuery:
if (!ok) X_ReceiveFail();
break;
case CD_CSend:
if (ok) C_Sended();
else C_SendFail();
if (ok)
C_Sended();
else
C_SendFail();
break;
case CD_CQuery:
if (!ok) C_ReceiveFail();
break;
case CD_MSend:
if (ok) M_Sended();
else M_SendFail();
if (ok)
M_Sended();
else
M_SendFail();
break;
case CD_MQuery:
if (!ok) M_ReceiveFail();
@@ -375,7 +377,7 @@ void CDCore::xTimerTick() {
} else {
ba = makeHeader(CD_XValues, 0);
ba << x_selected;
piForeachC (PIDeque<int> & p, x_selected) {
for (const auto & p: x_selected) {
x_[p].writeX(ba);
}
// piCout << "x app" << x_selected.size();
@@ -386,8 +388,8 @@ void CDCore::xTimerTick() {
void CDCore::piCoutFinished(int id, PIString * buffer) {
if (!buffer || !(id == 1)) return;
PIString sp = buffer->takeRange("[", "]");
if ((id != cout_buffer_id) || !buffer) return;
PIString sp = buffer->takeRange('[', ']');
PIDeque<int> p = CDCore::stringToPath(sp);
sendMessage(m_[p], Log, *buffer);
delete buffer;
@@ -406,7 +408,8 @@ PIByteArray CDCore::makeHeader(CDPacketType type, int session_id) const {
PacketHeader h;
h.type = type;
h.session_id = session_id;
PIByteArray ret; ret << h;
PIByteArray ret;
ret << h;
return ret;
}
@@ -434,15 +437,12 @@ void CDCore::procReceivedPacket(PIByteArray & ba) {
case CD_Ping:
// piCoutObj << "ping";
break;
case CD_KQuery:
send(CDType::cdK);
break;
case CD_KQuery: send(CDType::cdK); break;
case CD_KSend: {
PIByteArray k;
ba >> k;
k << uchar(0);
PIString s = PIString::fromUTF8((const char *)k.data());
PIIOString ios(&s);
PIIOByteArray ios(k);
cd_read(&k_, &ios);
K_Received();
piCoutObj << "K received";
@@ -452,15 +452,12 @@ void CDCore::procReceivedPacket(PIByteArray & ba) {
ba >> p;
k_[p.path].setValue(p.value);
} break;
case CD_XQuery:
send(CDType::cdX);
break;
case CD_XQuery: send(CDType::cdX); break;
case CD_XSend: {
PIByteArray x;
ba >> x;
x << uchar(0);
PIString s = PIString::fromUTF8((const char *)x.data());
PIIOString ios(&s);
PIIOByteArray ios(x);
cd_read(&x_, &ios);
x_selected = x_.collectX();
X_Received();
@@ -474,7 +471,7 @@ void CDCore::procReceivedPacket(PIByteArray & ba) {
ba >> x_selected;
// piCout << "X req" << x_selected.size();
x_.setSelectedX(false);
piForeachC (PIDeque<int> & p, x_selected) {
for (const auto & p: x_selected) {
x_[p].x_enabled = true;
}
x_mutex.unlock();
@@ -484,22 +481,19 @@ void CDCore::procReceivedPacket(PIByteArray & ba) {
PIVector<PIDeque<int>> x_vals;
ba >> x_vals;
x_mutex.lock();
piForeachC (PIDeque<int> & p, x_vals) {
for (const auto & p: x_vals) {
x_[p].readX(ba);
}
x_mutex.unlock();
X_ReceivedX(x_vals);
} break;
case CD_CQuery:
send(CDType::cdC);
break;
case CD_CQuery: send(CDType::cdC); break;
case CD_CSend: {
piCoutObj << "C received";
PIByteArray c;
ba >> c;
c << uchar(0);
PIString s = PIString::fromUTF8((const char *)c.data());
PIIOString ios(&s);
PIIOByteArray ios(c);
cd_read(&c_, &ios);
C_Received();
} break;
@@ -513,16 +507,13 @@ void CDCore::procReceivedPacket(PIByteArray & ba) {
// piCoutObj << "found" << sp << h.first;
if (h.first && h.second) h.second(h.first);
} break;
case CD_MQuery:
send(CDType::cdM);
break;
case CD_MQuery: send(CDType::cdM); break;
case CD_MSend: {
piCoutObj << "M received";
PIByteArray c;
ba >> c;
c << uchar(0);
PIString s = PIString::fromUTF8((const char *)c.data());
PIIOString ios(&s);
PIByteArray m;
ba >> m;
m << uchar(0);
PIIOByteArray ios(m);
cd_read(&m_, &ios);
M_Received();
} break;
@@ -558,7 +549,7 @@ PIString CDCore::pathToString(const PIDeque<int> & p) {
PIString ret;
for (int i = 0; i < p.size_s(); ++i) {
if (!ret.isEmpty()) ret += ".";
ret << p[i];
ret += PIString::fromNumber(p[i]);
}
return ret;
}
@@ -567,7 +558,7 @@ PIString CDCore::pathToString(const PIDeque<int> & p) {
PIDeque<int> CDCore::stringToPath(const PIString & p) {
PIDeque<int> ret;
PIStringList sl = p.split(".");
piForeachC (PIString & s, sl)
for (const auto & s: sl)
ret << s.toInt();
return ret;
}
@@ -577,7 +568,7 @@ void CDUtils::CDCore::dataReceived(const PIString & from, const PIByteArray & da
// piCoutObj << "dataReceived" << from << data.size();
PIIODevice * d = connection.deviceByName("cd");
if (d && d == connection.deviceByFullPath(from)) {
if (data.size() >= sizeof(4)) {
if (data.size() >= sizeof(int)) {
PIByteArray ba = data;
uchar header = ba.take_front();
if (header == header_transfer) {
@@ -603,4 +594,3 @@ void CDCore::dtReceiveFinished(bool ok) {
PIByteArray ba = datatr.data();
procReceivedPacket(ba);
}

View File

@@ -20,17 +20,18 @@
#ifndef CDUTILS_CORE_H
#define CDUTILS_CORE_H
#include "cdutils_types.h"
#include "cd_core_export.h"
#include "cdutils_protocol.h"
#include "cdutils_types.h"
#include "piconnection.h"
#include "pidatatransfer.h"
#include "cd_core_export.h"
namespace CDUtils {
class CDCore;
typedef void (*Handler)(void *);
class CD_CORE_EXPORT __Core_Initializer__ {
public:
@@ -41,43 +42,44 @@ public:
};
class CD_CORE_EXPORT CDCore: public PIObject
{
PIOBJECT(CDUtils::CDCore)
class CD_CORE_EXPORT CDCore: public PIObject {
PIOBJECT(CDUtils::CDCore);
friend class __Core_Initializer__;
friend class CDSection;
friend class Interface;
friend class XInterface;
friend class MInterface;
public:
static CDCore * instance();
static bool destroy();
EVENT(K_Sended)
EVENT(K_SendFail)
EVENT(K_Received)
EVENT(K_ReceiveFail)
EVENT(K_ChangedGlobal)
EVENT(K_Sended);
EVENT(K_SendFail);
EVENT(K_Received);
EVENT(K_ReceiveFail);
EVENT(K_ChangedGlobal);
EVENT_HANDLER2(void, K_DirectChange, PIDeque<int>, path, PIString, value);
EVENT(X_Sended)
EVENT(X_SendFail)
EVENT(X_Received)
EVENT(X_ReceiveFail)
EVENT(X_ChangedGlobal)
EVENT1(X_ReceivedX, PIVector<PIDeque<int> >, pathes)
EVENT(X_Sended);
EVENT(X_SendFail);
EVENT(X_Received);
EVENT(X_ReceiveFail);
EVENT(X_ChangedGlobal);
EVENT1(X_ReceivedX, PIVector<PIDeque<int>>, pathes);
EVENT(C_Sended)
EVENT(C_SendFail)
EVENT(C_Received)
EVENT(C_ReceiveFail)
EVENT(C_ChangedGlobal)
EVENT(C_Sended);
EVENT(C_SendFail);
EVENT(C_Received);
EVENT(C_ReceiveFail);
EVENT(C_ChangedGlobal);
EVENT(M_Sended)
EVENT(M_SendFail)
EVENT(M_Received)
EVENT(M_ReceiveFail)
EVENT(M_ChangedGlobal)
EVENT3(M_Message, PIDeque<int>, path, int, type, PIString, msg)
EVENT(M_Sended);
EVENT(M_SendFail);
EVENT(M_Received);
EVENT(M_ReceiveFail);
EVENT(M_ChangedGlobal);
EVENT3(M_Message, PIDeque<int>, path, int, type, PIString, msg);
void cd_write(CDSection * cd, PIIODevice * d);
void cd_read(CDSection * cd, PIIODevice * d);
@@ -110,6 +112,7 @@ public:
private:
CDCore();
~CDCore();
EVENT_HANDLER2(void, dataReceived, const PIString &, from, const PIByteArray &, data);
EVENT_HANDLER1(void, dtSendRequest, PIByteArray &, data);
EVENT_HANDLER1(void, dtReceiveFinished, bool, ok);
@@ -135,13 +138,13 @@ private:
PIMutex x_mutex;
PIVector<PIDeque<int>> x_selected;
PIMap<PIString, OHPair> c_handlers;
int cout_buffer_id = 0;
bool need_rebuild_x, x_pult_side;
};
static __Core_Initializer__ __Core_initializer__;
}
} // namespace CDUtils
#endif // CDUTILS_CORE_H

View File

@@ -1,4 +1,5 @@
#include "cdutils_interface.h"
#include "cdutils_core.h"
#include "piconfig.h"
#include "pifile.h"

View File

@@ -20,9 +20,9 @@
#ifndef CDUTILS_INTERFACE_H
#define CDUTILS_INTERFACE_H
#include "cd_core_export.h"
#include "cdutils_types.h"
#include "piobject.h"
#include "cd_core_export.h"
namespace CDUtils {
@@ -30,9 +30,9 @@ namespace CDUtils {
class CDCore;
class CD_CORE_EXPORT Interface: public PIObject
{
PIOBJECT(CDUtils::Interface)
class CD_CORE_EXPORT Interface: public PIObject {
PIOBJECT(CDUtils::Interface);
public:
Interface(CDType::cdT type_);
@@ -72,11 +72,11 @@ public:
void writeFile();
bool inProgress();
EVENT(sended)
EVENT(sendFailed)
EVENT(received)
EVENT(receiveFailed)
EVENT(changedGlobal)
EVENT(sended);
EVENT(sendFailed);
EVENT(received);
EVENT(receiveFailed);
EVENT(changedGlobal);
EVENT_HANDLER(void, send);
EVENT_HANDLER(void, request);
@@ -86,11 +86,10 @@ protected:
CDType::cdT type;
PIString file_;
int file_size;
};
}
} // namespace CDUtils
#endif // CDUTILS_INTERFACE_H

View File

@@ -1,4 +1,5 @@
#include "cdutils_k.h"
#include "cdutils_core.h"
using namespace CDUtils;
@@ -6,8 +7,7 @@ using namespace CDUtils;
KInterface K;
KInterface::KInterface(): Interface(CDType::cdK) {
}
KInterface::KInterface(): Interface(CDType::cdK) {}
void KInterface::directChange(const CDType & k) {

View File

@@ -20,27 +20,26 @@
#ifndef CDUTILS_K_H
#define CDUTILS_K_H
#include "cdutils_interface.h"
#include "cd_core_export.h"
#include "cdutils_interface.h"
namespace CDUtils {
class CD_CORE_EXPORT KInterface: public Interface
{
PIOBJECT_SUBCLASS(KInterface, Interface)
class CD_CORE_EXPORT KInterface: public Interface {
PIOBJECT_SUBCLASS(KInterface, Interface);
public:
KInterface();
EVENT1(keepNamesRequest, bool*, kn)
EVENT1(keepNamesRequest, bool *, kn);
void directChange(const CDType & k);
void directChange(const CDType & k, double v);
};
}
} // namespace CDUtils
extern CD_CORE_EXPORT CDUtils::KInterface K;

View File

@@ -1,4 +1,5 @@
#include "cdutils_m.h"
#include "cdutils_core.h"
using namespace CDUtils;
@@ -18,5 +19,5 @@ void MInterface::messageBox(const CDType & m, const PIString & msg) {
PICout MInterface::createPICout(const CDType & m) const {
PIString * buff = new PIString("[" + CDCore::pathToString(m.path()) + "]");
return PICout(buff, 1);
return PICout::withExternalBufferAndID(buff, core->cout_buffer_id);
}

View File

@@ -20,16 +20,16 @@
#ifndef CDUTILS_M_H
#define CDUTILS_M_H
#include "cdutils_interface.h"
#include "cd_core_export.h"
#include "cdutils_interface.h"
namespace CDUtils {
class CD_CORE_EXPORT MInterface: public Interface
{
PIOBJECT_SUBCLASS(MInterface, Interface)
class CD_CORE_EXPORT MInterface: public Interface {
PIOBJECT_SUBCLASS(MInterface, Interface);
public:
MInterface();
@@ -42,14 +42,13 @@ public:
void messageBox(const CDType & m, const PIString & msg);
EVENT3(messageReceived, PIDeque<int>, path, int, type, PIString, msg)
EVENT3(messageReceived, PIDeque<int>, path, int, type, PIString, msg);
private:
PICout createPICout(const CDType & m) const;
};
}
} // namespace CDUtils
extern CD_CORE_EXPORT CDUtils::MInterface M;

View File

@@ -1,8 +1,9 @@
#include "cdutils_parser.h"
#include "cdutils_types.h"
#include "piiostring.h"
#include "piiobytearray.h"
#include "pifile.h"
#include "piiobytearray.h"
#include "piiostring.h"
using namespace CDUtils;
@@ -63,8 +64,8 @@ PIVector<int> enumValues(const PIString & e, const PIMap<PIString, CDSection> &
PIVector<int> ret;
enames.clear();
if (sections.contains(e)) {
ret = sections[e].indexes();
enames = sections[e].index_names();
ret = sections.at(e).indexes();
enames = sections.at(e).index_names();
} else {
int v = e.toInt();
if (v < 2) return ret;
@@ -94,7 +95,7 @@ CDSection CDParser::parse(PIIODevice * d, int cdsection_type) {
content = PIString::fromUTF8((const char *)c.data());
}
if (PIStringAscii(d->className()) == PIStringAscii("PIIOString")) content = *(((PIIOString *)d)->string());
if (PIStringAscii(d->className()) == PIStringAscii("PIIOByteArray")) content = PIString(*(((PIIOByteArray*)d)->byteArray()));
if (PIStringAscii(d->className()) == PIStringAscii("PIIOByteArray")) content = PIString::fromUTF8(*(((PIIOByteArray *)d)->byteArray()));
PIIOString ios(&content);
// int phase = 0;
int cind = -1;
@@ -150,7 +151,7 @@ CDSection CDParser::parse(PIIODevice * d, int cdsection_type) {
ts.section(evals[i]).alias = enames[i];
}
ts.name = is.name;
ts.name.insert(ibpos, PIString("[") << a << "]");
ts.name.insert(ibpos, PIString('[') + a + ']');
is = ts;
ts = CDSection(et);
}

View File

@@ -34,6 +34,6 @@ CD_CORE_EXPORT CDSection parse(PIIODevice * d, int cdsection_type);
}
}
} // namespace CDUtils
#endif // CDUTILS_PARSER_H

View File

@@ -20,8 +20,8 @@
#ifndef CDUTILS_PROTOCOL_H
#define CDUTILS_PROTOCOL_H
#include "pistring.h"
#include "cd_core_export.h"
#include "pistring.h"
namespace CDUtils {
@@ -61,10 +61,26 @@ namespace CDUtils {
#pragma pack(pop)
inline PIByteArray & operator <<(PIByteArray & s, const PacketKDirectChange & v) {s << v.path << v.value; return s;}
inline PIByteArray & operator >>(PIByteArray & s, PacketKDirectChange & v) {s >> v.path >> v.value; return s;}
#ifdef PIP_BINARY_STREAM
BINARY_STREAM_WRITE(PacketKDirectChange) {
s << v.path << v.value;
return s;
}
BINARY_STREAM_READ(PacketKDirectChange) {
s >> v.path >> v.value;
return s;
}
#else
inline PIByteArray & operator<<(PIByteArray & s, const PacketKDirectChange & v) {
s << v.path << v.value;
return s;
}
inline PIByteArray & operator>>(PIByteArray & s, PacketKDirectChange & v) {
s >> v.path >> v.value;
return s;
}
#endif
} // namespace CDUtils
#endif // CDUTILS_PROTOCOL_H

View File

@@ -1,31 +1,14 @@
#include "cdutils_types.h"
#include "piconfig.h"
#include "pifile.h"
#include "pievaluator.h"
#include "cdutils_core.h"
#include "piconfig.h"
#include "pievaluator.h"
using namespace CDUtils;
//int cdtype_debug_cnt = 1;
const int cd_x_history_max_size = 4000;
CDType::CDType() {
index_ = -1;
value_d = 0.;
value_i = 0;
value_b = calculated = x_enabled = false;
cd_type_ = cdNull;
parent = 0;
avg_size = 1;
mode_ = rmode_ = X_Current;
// debug_cnt = cdtype_debug_cnt;
// cdtype_debug_cnt++;
// piCout << "[CDType]" << "create Null" << debug_cnt;
}
CDType::CDType(int i, const PIString & n, const PIString & t, const PIString & v, const PIString & f, const PIString & c, cdT cd_t) {
index_ = i;
@@ -49,9 +32,8 @@ CDType::CDType(int i, const PIString & n, const PIString & t, const PIString & v
// piCout << type_.size() << type_.toUTF8();
// piCout << formula_.size() << formula_.toUTF8();
// piCout << comment_.size() << comment_.toUTF8();
// debug_cnt = cdtype_debug_cnt;
// cdtype_debug_cnt++;
// piCout << "[CDType] create" << name_ << ":" << type_ << ":" << value_s << ":" << value_d << ":" << formula_ << ":" << comment_ << ":" << (cd_type_ == cdK);
// piCout << "[CDType] create" << name_ << ":" << type_ << ":" << value_s << ":" << value_d << ":" << formula_ << ":" << comment_ <<
//":" << (cd_type_ == cdK);
}
@@ -63,14 +45,16 @@ CDType & CDType::operator =(double x) {
avg_h << x;
double val = 0;
if (avg_h.size_s() >= avg_size) {
for (int i = 0; i < avg_h.size_s(); i++)
for (int i = 0; i < avg_h.size_s(); i++) {
val += avg_h[i];
}
val /= avg_h.size();
avg_h.clear();
if (history.size() < cd_x_history_max_size)
if (history.size() < cd_x_history_max_size) {
history << val;
}
}
}
return *this;
}
@@ -134,29 +118,31 @@ PIStringList CDType::pathString() const {
if (!ps) return ret;
for (int i = 0; i < path_.size_s() - 1; ++i) {
ps = &(ps->section(path_[i]));
if (!ps->alias.isEmpty()) ret << ps->alias;
else ret << PIString::fromNumber(path_[i]);
if (!ps->alias.isEmpty())
ret << ps->alias;
else
ret << PIString::fromNumber(path_[i]);
}
if (!name_.isEmpty()) ret << name_;
else ret << PIString::fromNumber(index_);
if (!name_.isEmpty())
ret << name_;
else
ret << PIString::fromNumber(index_);
return ret;
}
void CDType::readX(PIByteArray & ba) {
if (ba.size() < 5) return;
uchar t(0); ba >> t;
uchar t(0);
ba >> t;
rmode_ = (XMode)t;
switch (rmode_) {
case X_Current:
ba >> value_d;
break;
case X_Current: ba >> value_d; break;
case X_All_Avg: {
PIVector<double> ah;
ba >> ah;
history << ah;
if (!history.isEmpty())
value_d = history.back();
if (!history.isEmpty()) value_d = history.back();
} break;
default: break;
}
@@ -168,9 +154,7 @@ void CDType::readX(PIByteArray & ba) {
void CDType::writeX(PIByteArray & ba) {
ba << uchar(mode_);
switch (mode_) {
case X_Current:
ba << value_d;
break;
case X_Current: ba << value_d; break;
case X_All_Avg:
ba << history;
history.clear();
@@ -183,9 +167,10 @@ void CDType::writeX(PIByteArray & ba) {
bool CDType::calculate(PIEvaluator * e, PIVector<const CDType *> stack) {
if (stack.contains(this)) {
error_ = "Circular dependencies: ";
piForeachC (CDType * k, stack)
error_ << k->name() << " -> ";
error_ << name();
for (const CDType * k: stack) {
error_ += k->name() + " -> ";
}
error_ += name();
// piCout << error_;
return false;
}
@@ -217,8 +202,7 @@ bool CDType::calculate(PIEvaluator * e, PIVector<const CDType * > stack) {
error_ = e->error();
return false;
}
} else
if (e->isCorrect())
} else if (e->isCorrect())
ev = e->evaluate().real();
// piCout << value_s << value_i << value_d << ev;
// if ((value_d == 0.) || (piAbsd(value_d) < piAbsd(ev))) value_d = ev;
@@ -249,7 +233,7 @@ PIVariantTypes::Enum CDType::parseEnumComment(PIString c) {
if (type_ == "e") {
PIStringList sl = c.inBrackets('{', '}').split(",");
int cval = 0;
piForeach (PIString & s, sl) {
for (PIString & s: sl) {
s.trim();
if (s.isEmpty()) continue;
if (s[0].isDigit()) {
@@ -268,46 +252,6 @@ PIVariantTypes::Enum CDType::parseEnumComment(PIString c) {
}
//CDType::CDType(const CDType &cdt) {
// index_ = cdt.index_;
// name_ = cdt.name_;
// type_ = cdt.type_;
// value_s = cdt.value_s;
// formula_ = cdt.formula_;
// comment_ = cdt.comment_;
// value_d = cdt.value_d;
// value_i = cdt.value_i;
// value_b = cdt.value_b;
// cd_type_ = cdt.cd_type_;
// debug_cnt = cdtype_debug_cnt;
// cdtype_debug_cnt++;
// piCout << "[CDType] copy" << debug_cnt << "->" << cdt.debug_cnt << index_ << ":" << name_ << ":" << type_ << ":" << value_s << ":" << value_d << ":" << formula_ << ":" << comment_ << ":" << (cd_type_ == cdK);
//}
//CDType &CDType::operator =(const CDType &cdt) {
// index_ = cdt.index_;
// name_ = cdt.name_;
// type_ = cdt.type_;
// value_s = cdt.value_s;
// formula_ = cdt.formula_;
// comment_ = cdt.comment_;
// value_d = cdt.value_d;
// value_i = cdt.value_i;
// value_b = cdt.value_b;
// cd_type_ = cdt.cd_type_;
// piCout << "[CDType] assign" << debug_cnt << "=" << cdt.debug_cnt << index_ << ":" << name_ << ":" << type_ << ":" << value_s << ":" << value_d << ":" << formula_ << ":" << comment_ << ":" << (cd_type_ == cdK);
// //debug_cnt = cdt.debug_cnt;
// return *this;
//}
//CDType::~CDType() {
// piCout << "[CDType] delete" << debug_cnt << index_ << ":" << name_ << ":" << type_ << ":" << value_s << ":" << value_d << ":" << formula_ << ":" << comment_ << ":" << (cd_type_ == cdK);
//}
CDSection::CDSection(CDType::cdT type_) {
cd_type_ = type_;
null.cd_type_ = type_;
@@ -341,9 +285,9 @@ bool CDSection::exists(PIDeque<int> path) const {
int CDSection::count(bool recursive) const {
int ret = cd.size_s();
if (recursive) {
PIMap<int, CDSection>::const_iterator i;
for (i = s.constBegin(); i != s.constEnd(); ++i)
ret += i->second.count(recursive);
for (auto i = s.begin(); i != s.end(); ++i) {
ret += i.value().count(recursive);
}
}
return ret;
}
@@ -390,11 +334,13 @@ CDType & CDSection::getByName(const PIString & name_) {
auto it = cs->s.makeIterator();
while (it.next()) {
bool f = false;
if (isd) f = (dv == it.key());
else f = (np[i] == it.value().alias);
if (isd)
f = (dv == it.key());
else
f = (np[i] == it.value().alias);
// piCout << "s..." << it.key() << it.value().alias << f;
if (f) {
ns = &(it.valueRef());
ns = &(it.value());
break;
}
}
@@ -410,11 +356,12 @@ CDType & CDSection::getByName(const PIString & name_) {
auto it = cs->cd.makeIterator();
while (it.next()) {
bool f = false;
if (isd) f = (dv == it.key());
else f = (np.back() == it.value().name());
if (isd)
f = (dv == it.key());
else
f = (np.back() == it.value().name());
// piCout << "k..." << it.key() << it.value().name() << f;
if (f)
return cs->cd[it.key()];
if (f) return cs->cd[it.key()];
}
return null;
}
@@ -436,9 +383,15 @@ void CDSection::write(PIIODevice * d, const PIString & prefix) {
// piCout << "[CDSection] write start";
PIString l;
PIStringList cdtl;
cdtl << "null" << "k" << "x" << "c" << "m";
if (prefix.isEmpty()) l = "[" + cdtl[cd_type_] + "]";
else l = "[" + prefix + "." + cdtl[cd_type_] + "]";
cdtl << "null"
<< "k"
<< "x"
<< "c"
<< "m";
if (prefix.isEmpty())
l = "[" + cdtl[cd_type_] + "]";
else
l = "[" + prefix + "." + cdtl[cd_type_] + "]";
l += "\n";
d->write(l.toUTF8());
l = "name = " + name + " \n";
@@ -452,43 +405,46 @@ void CDSection::write(PIIODevice * d, const PIString & prefix) {
switch (cd_type_) {
case CDType::cdNull: break;
case CDType::cdK:
l.clear(); l << ck.index() << ".f = " << ck.formula() << " #s " << ck.comment() << " \n";
l = PIString::fromNumber(ck.index()) + ".f = " + ck.formula() + " #s " + ck.comment() + " \n";
d->write(l.toUTF8());
l.clear(); l << ck.index() << ".v = " << ck.value() << " #" << ck.type() << " " << ck.name() << " \n";
l = PIString::fromNumber(ck.index()) + ".v = " + ck.value() + " #" + ck.type() + " " + ck.name() + " \n";
d->write(l.toUTF8());
if (!ck.enumValues().enum_list.isEmpty()) {
l.clear(); l << ck.index() << ".ev = {";
//PIVector<CDType::Enumerator> el = ck.enumValues();
piForeachC (PIVariantTypes::Enumerator & e, ck.enumValues().enum_list)
l << e.value << " - " << e.name << ", ";
l = PIString::fromNumber(ck.index()) + ".ev = {";
for (const PIVariantTypes::Enumerator & e: ck.enumValues().enum_list) {
l += PIString::fromNumber(e.value) + " - " + e.name + ", ";
}
l.cutRight(2);
l << "} \n";
l += "} \n";
d->write(l.toUTF8());
}
break;
case CDType::cdX:
l.clear(); l << ck.index() << ".name = " << ck.name() << " #s " << ck.comment() << " \n";
l = PIString::fromNumber(ck.index()) + ".name = " + ck.name() + " #s " + ck.comment() + " \n";
d->write(l.toUTF8());
l.clear(); l << ck.index() << ".mode = " << ck.xmode() << " #e (0 - cur, 1 - all_avg) " << "\n";
l = PIString::fromNumber(ck.index()) + ".mode = " + PIString::fromNumber((int)ck.xmode()) + " #e (0 - cur, 1 - all_avg) " +
"\n";
d->write(l.toUTF8());
l.clear(); l << ck.index() << ".avg = " << ck.avg() << " #n " << "\n";
l = PIString::fromNumber(ck.index()) + ".avg = " + PIString::fromNumber(ck.avg()) + " #n " + "\n";
d->write(l.toUTF8());
l.clear(); l << ck.index() << ".sel = " << (ck.isSelectedX() ? "1" : "0") << " #n " << "\n";
l = PIString::fromNumber(ck.index()) + ".sel = " + (ck.isSelectedX() ? "1" : "0") + " #n " + "\n";
d->write(l.toUTF8());
break;
case CDType::cdC:
case CDType::cdM:
l.clear(); l << ck.index() << ".name = " << ck.name() << " #s " << ck.comment() << " \n";
l = PIString::fromNumber(ck.index()) + ".name = " + ck.name() + " #s " + ck.comment() + " \n";
d->write(l.toUTF8());
break;
}
}
if (!s.isEmpty()) {
if (prefix.isEmpty()) l = "s";
else l = prefix + ".s";
if (prefix.isEmpty())
l = "s";
else
l = prefix + ".s";
auto j = s.makeIterator();
while (j.next()) {
j.valueRef().write(d, l + "." + PIString::fromNumber(j.key()));
j.value().write(d, l + "." + PIString::fromNumber(j.key()));
}
}
if (prefix.isEmpty()) {
@@ -502,7 +458,11 @@ void CDSection::write(PIIODevice * d, const PIString & prefix) {
void CDSection::read(const void * ep) {
// piCout << "[CDSection] read start";
PIStringList cdtl;
cdtl << "null" << "k" << "x" << "c" << "m";
cdtl << "null"
<< "k"
<< "x"
<< "c"
<< "m";
cd.clear();
s.clear();
PIConfig::Entry & e(*(PIConfig::Entry *)ep);
@@ -514,18 +474,21 @@ void CDSection::read(const void * ep) {
bool ok = false;
int id = e->name().toInt(-1, &ok);
// piCout << "[read]" << ke->name() << ke->value() << ok;
// PIString n = ke->getValue("v").comment();
// PIString t = n.takeLeft(1);
if (ok) {
CDType c;
PIString ev;
switch (cd_type_) {
case CDType::cdNull: break;
case CDType::cdK:
c = CDType(id, e->getValue("v").comment(), e->getValue("v").type(), e->getValue("v").value(), e->getValue("f").value(), e->getValue("f").comment(), cd_type_);
c = CDType(id,
e->getValue("v").comment(),
e->getValue("v").type(),
e->getValue("v").value(),
e->getValue("f").value(),
e->getValue("f").comment(),
cd_type_);
ev = e->getValue("ev", "").value();
if (!ev.isEmpty())
c.enum_values = c.parseEnumComment(ev);
if (!ev.isEmpty()) c.enum_values = c.parseEnumComment(ev);
break;
case CDType::cdX:
c = CDType(id, e->getValue("name").value(), PIString(), PIString(), PIString(), e->getValue("name").comment(), cd_type_);
@@ -563,174 +526,133 @@ void CDSection::update(CDSection & v, UpdateModeFlags mode) {
PIMap<int, PIString> prev_cd_f_bi;
PIMap<PIString, PIString> prev_cd_f_bn;
PIMap<int, CDType>::iterator i;
if (mode[SaveByIndex]) {
for (i = cd.begin(); i != cd.end(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
prev_cd_f_bi[i.key()] = i.value().formula();
}
}
if (mode[SaveByName]) {
for (i = cd.begin(); i != cd.end(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
prev_cd_f_bn[i.value().name_] = i.value().formula();
}
if (!mode[Merge])
cd.clear();
for (i = v.cd.begin(); i != v.cd.end(); ++i) {
}
if (!mode[Merge]) cd.clear();
for (auto i = v.cd.begin(); i != v.cd.end(); ++i) {
int id = i.key();
PIString n = i.value().name();
cd[id] = i.value();
if (mode[SaveByIndex]) {
if (prev_cd_f_bi.contains(id))
if (prev_cd_f_bi.contains(id)) {
cd[id].setFormula(prev_cd_f_bi[id]);
}
}
if (mode[SaveByName]) {
if (prev_cd_f_bn.contains(n))
if (prev_cd_f_bn.contains(n)) {
cd[id].setFormula(prev_cd_f_bn[n]);
}
}
}
PIMap<int, CDSection> prev_s_bi;
PIMap<PIString, CDSection> prev_s_bn;
PIMap<int, CDSection>::iterator j;
if (mode[SaveByIndex]) {
for (j = s.begin(); j != s.end(); ++j)
for (auto j = s.begin(); j != s.end(); ++j) {
prev_s_bi[j.key()] = j.value();
}
}
if (mode[SaveByName]) {
for (j = s.begin(); j != s.end(); ++j)
for (auto j = s.begin(); j != s.end(); ++j) {
prev_s_bn[j.value().alias] = j.value();
}
if (!mode[Merge])
s.clear();
for (j = v.s.begin(); j != v.s.end(); ++j) {
}
if (!mode[Merge]) s.clear();
for (auto j = v.s.begin(); j != v.s.end(); ++j) {
int id = j.key();
PIString n = j.value().alias;
s[id] = j.value();
if (mode[SaveByIndex]) {
if (prev_s_bi.contains(id))
s[id] = prev_s_bi[id];
if (prev_s_bi.contains(id)) s[id] = prev_s_bi[id];
}
if (mode[SaveByName]) {
if (prev_s_bn.contains(n))
s[id] = prev_s_bn[n];
if (prev_s_bn.contains(n)) s[id] = prev_s_bn[n];
}
s[id].update(j.value(), mode);
}
/*PISet<int> used;
for (i = k.begin(); i != k.end(); ++i) {
if (v.k.contains(i.key())) {
PIString f = k[i.key()].formula_;
CDType & cdt = v.k[i.key()];
cdt.formula_ = f;
k[i.key()] = cdt;
used << i.key();
}
if (mode) {
CDType & ck(k[i.key()]);
if (prev_k_f_bn.contains(ck.name_))
ck.setFormula(prev_k_f_bn[ck.name_]);
}
}
//piCout << " after" << k.size();
for (i = v.k.begin(); i != v.k.end(); ++i) {
if (!used.contains(i.key()))
k[i.key()] = i.value();
CDType & ck(k[i.key()]);
ck.setFormula(prev_k_f_bn.value(ck.name_));
}
used.clear();
PIMap<int, CDSection>::iterator j;
for (j = s.begin(); j != s.end(); ++j) {
if (v.s.contains(j.key()))
j.value().update(v.s[j.key()], mode);
used << j.key();
}
for (j = v.s.begin(); j != v.s.end(); ++j) {
if (!used.contains(j.key()))
s[j.key()] = j.value();
}*/
// piCout << "[CDSection] update end";
}
bool CDSection::isSameStructure(CDSection & v) {
PIMap<PIString, int> cd_ids;
PIMap<int, CDType>::iterator i;
for (i = cd.begin(); i != cd.end(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
cd_ids[i.value().name()] = i.key();
for (i = v.cd.begin(); i != v.cd.end(); ++i) {
}
for (auto i = v.cd.begin(); i != v.cd.end(); ++i) {
if (!cd_ids.contains(i.value().name())) continue;
// piCout << i.key() << k[i.key()].name() << i.value().name();
if (cd[cd_ids[i.value().name()]].index() != i.key())
return false;
if (cd[cd_ids[i.value().name()]].index() != i.key()) return false;
}
PIMap<int, CDSection>::iterator j;
for (j = v.s.begin(); j != v.s.end(); ++j) {
for (auto j = v.s.begin(); j != v.s.end(); ++j) {
if (!s.contains(j.key())) continue;
if (!s[j.key()].isSameStructure(j.value()))
return false;
if (!s[j.key()].isSameStructure(j.value())) return false;
}
return true;
}
void CDSection::prepareCalculate() {
PIMap<int, CDType>::iterator i;
for (i = cd.begin(); i != cd.end(); ++i) {
for (auto i = cd.begin(); i != cd.end(); ++i) {
i.value().parent = this;
i.value().calculated = false;
}
PIMap<int, CDSection>::iterator j;
for (j = s.begin(); j != s.end(); ++j)
for (auto j = s.begin(); j != s.end(); ++j) {
j.value().prepareCalculate();
}
}
void CDSection::calculateRecursive(PIEvaluator * e) {
PIMap<int, CDType>::iterator i;
for (i = cd.begin(); i != cd.end(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
i.value().calculate(e);
PIMap<int, CDSection>::iterator j;
for (j = s.begin(); j != s.end(); ++j)
}
for (auto j = s.begin(); j != s.end(); ++j) {
j.value().calculateRecursive(e);
}
}
void CDSection::setSelectedX(bool yes) {
PIMap<int, CDType>::iterator i;
for (i = cd.begin(); i != cd.end(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
i.value().x_enabled = yes;
PIMap<int, CDSection>::iterator j;
for (j = s.begin(); j != s.end(); ++j)
}
for (auto j = s.begin(); j != s.end(); ++j) {
j.value().setSelectedX(yes);
}
}
PIVector<PIDeque<int>> CDSection::collectX() const {
PIVector<PIDeque<int>> ret;
PIMap<int, CDType>::const_iterator i;
for (i = cd.begin(); i != cd.end(); ++i) {
if (i.value().x_enabled)
for (auto i = cd.begin(); i != cd.end(); ++i) {
if (i.value().x_enabled) {
ret << i.value().path();
}
PIMap<int, CDSection>::const_iterator j;
for (j = s.constBegin(); j != s.constEnd(); ++j)
}
for (auto j = s.begin(); j != s.end(); ++j) {
ret << j.value().collectX();
}
return ret;
}
void CDSection::makePath(PIDeque<int> p) {
PIDeque<int> tp;
PIMap<int, CDType>::iterator i;
for (i = cd.begin(); i != cd.end(); ++i) {
for (auto i = cd.begin(); i != cd.end(); ++i) {
tp = p;
tp << i.key();
i.value().path_ = tp;
// piCout << "path for" << i.value().name() << tp;
}
PIMap<int, CDSection>::iterator j;
for (j = s.begin(); j != s.end(); ++j) {
for (auto j = s.begin(); j != s.end(); ++j) {
tp = p;
tp << j.key();
j.value().makePath(tp);
@@ -740,23 +662,21 @@ void CDSection::makePath(PIDeque<int> p) {
PIVector<CDType *> CDSection::children(bool recursive) const {
PIVector<CDType *> ret;
PIMap<int, CDType>::const_iterator i;
for (i = cd.begin(); i != cd.end(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
ret << const_cast<CDType *>(&(i.value()));
}
if (!recursive) return ret;
PIMap<int, CDSection>::const_iterator j;
for (j = s.constBegin(); j != s.constEnd(); ++j)
for (auto j = s.begin(); j != s.end(); ++j) {
ret << j.value().children(true);
}
return ret;
}
PIVariantTypes::Enum CDSection::enumValues() const {
PIVariantTypes::Enum ret;
PIMap<int, CDType>::const_iterator i;
for (i = cd.constBegin(); i != cd.constEnd(); ++i)
for (auto i = cd.begin(); i != cd.end(); ++i) {
ret << PIVariantTypes::Enumerator(i.key(), i.value().name());
}
return ret;
}

View File

@@ -20,10 +20,10 @@
#ifndef CDUTILS_TYPES_H
#define CDUTILS_TYPES_H
#include "pistring.h"
#include "pimap.h"
#include "pivariant.h"
#include "cd_core_export.h"
#include "pimap.h"
#include "pistring.h"
#include "pivariant.h"
class PIIODevice;
class PIEvaluator;
@@ -34,6 +34,12 @@ class CDItemModel;
namespace CDUtils {
class CDSection;
class CDCore;
class Interface;
class KInterface;
class XInterface;
class CInterface;
class MInterface;
enum UpdateMode {
SaveByIndex = 0x01,
@@ -53,11 +59,21 @@ class CD_CORE_EXPORT CDType {
friend class CDCore;
friend class Interface;
friend class XInterface;
public:
enum cdT {cdNull, cdK, cdX, cdC, cdM};
enum XMode {X_Current, X_All_Avg};
CDType();
public:
enum cdT {
cdNull,
cdK,
cdX,
cdC,
cdM
};
enum XMode {
X_Current,
X_All_Avg
};
CDType() {}
CDType(int i, const PIString & n, const PIString & t, const PIString & v, const PIString & f, const PIString & c, cdT cd_t);
CDType & operator=(double x);
@@ -97,19 +113,20 @@ public:
protected:
bool calculate(PIEvaluator * e, PIVector<const CDType *> stack = PIVector<const CDType *>());
PIVariantTypes::Enum parseEnumComment(PIString c);
cdT cd_type_;
int index_;
cdT cd_type_ = cdNull;
int index_ = -1;
PIString name_, type_;
PIString value_s, formula_, comment_, error_;
PIVariantTypes::Enum enum_values;
CDSection * parent;
CDSection * parent = nullptr;
PIDeque<int> path_;
double value_d;
int value_i;
bool value_b, calculated, x_enabled;
double value_d = 0.;
int value_i = 0;
bool value_b = false, calculated = false, x_enabled = false;
PIVector<double> avg_h;
int avg_size;
XMode mode_, rmode_;
int avg_size = 1;
XMode mode_ = X_Current, rmode_ = X_Current;
};
@@ -120,18 +137,15 @@ class CD_CORE_EXPORT CDSection {
friend class ::CD_Pult;
friend class ::CDItem;
friend class ::CDItemModel;
public:
public:
CDSection(CDType::cdT type_ = CDType::cdNull);
bool test(int v) { return cd.value(v).toBool(); }
// CDType & operator [](int v) {if (!k.contains(v)) k[v].index_ = v; return k[v];}
CDType & operator[](int v) { return cd[v]; }
const CDType operator [](int v) const {return cd[v];}
CDType & operator[](const PIString & name_) { return getByName(name_); }
const CDType operator [](const PIString & name_) const {return const_cast<CDSection*>(this)->getByName(name_);}
CDType & operator[](const PIDeque<int> & path_) { return getByPath(path_); }
const CDType operator [](const PIDeque<int> & path_) const {return const_cast<CDSection*>(this)->getByPath(path_);}
CDSection & section(int v);
const CDSection section(int v) const;
@@ -150,10 +164,7 @@ public:
PIString alias;
protected:
CDSection(PIMap<int, CDType> k_, PIMap<int, CDSection> s_) {
cd = k_;
s = s_;
}
CDSection(PIMap<int, CDType> k_, PIMap<int, CDSection> s_): cd(k_), s(s_) {}
CDType & getByName(const PIString & name_);
CDType & getByPath(const PIDeque<int> & path_);
void write(PIIODevice * d, const PIString & prefix = PIString());
@@ -171,12 +182,12 @@ protected:
CDType::cdT cd_type_;
};
}
} // namespace CDUtils
inline PICout operator<<(PICout s, const CDUtils::CDType & v) {
s.space();
s.setControl(0, true);
s.saveAndSetControls(0);
switch (v.cd_type()) {
case CDUtils::CDType::cdK: s << "K["; break;
case CDUtils::CDType::cdX: s << "X["; break;
@@ -185,7 +196,7 @@ inline PICout operator <<(PICout s, const CDUtils::CDType & v) {
default: s << "Null["; break;
}
s << v.name() << "(" << v.index() << ")] = " << v.value();
s.restoreControl();
s.restoreControls();
return s;
}

View File

@@ -1,4 +1,5 @@
#include "cdutils_x.h"
#include "cdutils_core.h"
using namespace CDUtils;

View File

@@ -20,21 +20,21 @@
#ifndef CDUTILS_X_H
#define CDUTILS_X_H
#include "cdutils_interface.h"
#include "cd_core_export.h"
#include "cdutils_interface.h"
namespace CDUtils {
class CD_CORE_EXPORT XInterface: public Interface
{
PIOBJECT_SUBCLASS(XInterface, Interface)
class CD_CORE_EXPORT XInterface: public Interface {
PIOBJECT_SUBCLASS(XInterface, Interface);
public:
XInterface();
EVENT1(keepNamesRequest, bool*, xn)
EVENT1(receivedX, PIVector<PIDeque<int> >, pathes)
EVENT1(keepNamesRequest, bool *, xn);
EVENT1(receivedX, PIVector<PIDeque<int>>, pathes);
void enable(const CDType & x) { setEnabled(x, true); }
void disable(const CDType & x) { setEnabled(x, false); }
@@ -47,10 +47,9 @@ public:
void start(double freq = 20.);
void stop();
};
}
} // namespace CDUtils
extern CD_CORE_EXPORT CDUtils::XInterface X;

View File

@@ -1,17 +1,18 @@
#include "cdutils_k.h"
#include "cdutils_x.h"
#include "cdutils_c.h"
#include "cdutils_m.h"
#include "cdutils_core.h"
#include "cdtest.h"
#include "pip.h"
#include "cdutils_c.h"
#include "cdutils_core.h"
#include "cdutils_k.h"
#include "cdutils_m.h"
#include "cdutils_x.h"
#include "k_description.h"
#include "piliterals_time.h"
#include "pip.h"
using namespace CDUtils;
class Core : public PIObject
{
PIOBJECT(Core)
class Core: public PIObject {
PIOBJECT(Core);
public:
Core() {
CDCore::instance()->initApp();
@@ -68,7 +69,7 @@ class Core : public PIObject
}
EVENT_HANDLER(void, xrecv) {
piCout << "received x";
if (!timer.isRunning()) timer.start(10);
if (!timer.isRunning()) timer.start(100_Hz);
X.start();
}
EVENT_HANDLER(void, timerDone) { test(); }
@@ -94,4 +95,3 @@ int main(int argc, char *argv[]) {
piCout << "DELETED";
return 0;
}

View File

@@ -1,20 +1,22 @@
#include "qcd_core.h"
#include "cdutils_k.h"
#include "cdutils_core.h"
#include "cdutils_k.h"
#include "piqt.h"
#include <QWidget>
#include <QCheckBox>
#include <QGroupBox>
#include <QSpinBox>
#include <QSlider>
#include <QScrollBar>
#include <QDoubleSpinBox>
#include <QGroupBox>
#include <QLineEdit>
#include <spinslider.h>
#include <QScrollBar>
#include <QSlider>
#include <QSpinBox>
#include <QWidget>
#include <clineedit.h>
#include <evalspinbox.h>
#include <qvariantedit.h>
#include <qcd_view.h>
#include <qvariantedit.h>
#include <spinslider.h>
using namespace CDUtils;
@@ -40,8 +42,6 @@ __QCore_Initializer__::~__QCore_Initializer__() {
}
QCDCore::QCDCore() {
setObjectName("QCDCore");
setName("QCDCore");
@@ -50,8 +50,7 @@ QCDCore::QCDCore() {
}
QCDCore::~QCDCore() {
}
QCDCore::~QCDCore() {}
void QCDCore::K_ChangedGlobal() {
@@ -141,7 +140,7 @@ bool QCDCore::bindWidget(QWidget * w) {
return false;
}
PIVector<CDType *> ak = K.root().children();
piForeachC (CDType * k, ak) {
for (const auto * k: ak) {
if (!on.endsWith(PI2QString(k->pathString().join("_")))) continue;
if (bindWidget(w, *k)) return true;
}
@@ -256,16 +255,12 @@ bool QCDCore::unbindWidget(QWidget * w) {
// qDebug() << "unbind" << w;
if (!binded_widgets.contains(w)) return false;
QString cn = w->metaObject()->className();
if (cn == "QCheckBox" || cn == "QGroupBox")
disconnect(w, SIGNAL(toggled(bool)), this, SLOT(slotBool(bool)));
if (cn == "QSpinBox" || cn == "QSlider" || cn == "QScrollBar")
disconnect(w, SIGNAL(valueChanged(int)), this, SLOT(slotInt(int)));
if (cn == "QCheckBox" || cn == "QGroupBox") disconnect(w, SIGNAL(toggled(bool)), this, SLOT(slotBool(bool)));
if (cn == "QSpinBox" || cn == "QSlider" || cn == "QScrollBar") disconnect(w, SIGNAL(valueChanged(int)), this, SLOT(slotInt(int)));
if (cn == "QDoubleSpinBox" || cn == "SpinSlider" || cn == "EvalSpinBox")
disconnect(w, SIGNAL(valueChanged(double)), this, SLOT(slotDouble(double)));
if (cn == "QLineEdit" || cn == "CLineEdit")
disconnect(w, SIGNAL(textChanged(QString)), this, SLOT(slotText(QString)));
if (cn == "QVariantEdit")
disconnect(w, SIGNAL(valueChanged(QVariant)), this, SLOT(slotVariant(QVariant)));
if (cn == "QLineEdit" || cn == "CLineEdit") disconnect(w, SIGNAL(textChanged(QString)), this, SLOT(slotText(QString)));
if (cn == "QVariantEdit") disconnect(w, SIGNAL(valueChanged(QVariant)), this, SLOT(slotVariant(QVariant)));
// qDebug() << "remove b" << binded_widgets.size();
binded_widgets.remove(w);
// qDebug() << "remove a" << binded_widgets.size();

View File

@@ -20,12 +20,13 @@
#ifndef QCD_CORE_H
#define QCD_CORE_H
#include <QObject>
#include <QMultiMap>
#include <QVariant>
#include "piobject.h"
#include "cdutils_types.h"
#include "cd_qt_export.h"
#include "cdutils_types.h"
#include "piobject.h"
#include <QMultiMap>
#include <QObject>
#include <QVariant>
class QCDCore;
@@ -40,11 +41,13 @@ public:
};
class CD_QT_EXPORT QCDCore: public QObject, public PIObject
{
class CD_QT_EXPORT QCDCore
: public QObject
, public PIObject {
Q_OBJECT
PIOBJECT(QCDCore)
PIOBJECT(QCDCore);
friend class __QCore_Initializer__;
public:
static QCDCore * instance() { return __QCore_Initializer__::__instance__; }
@@ -87,7 +90,6 @@ public slots:
signals:
void updateViewRequest();
};

View File

@@ -1,9 +1,10 @@
#include "qcd_graphic.h"
#include "ui_qcd_graphic.h"
#include "cdutils_core.h"
#include "cdutils_x.h"
#include "graphic.h"
#include "piqt.h"
#include "ui_qcd_graphic.h"
using namespace CDUtils;

View File

@@ -20,15 +20,16 @@
#ifndef QCD_GRAPHIC_H
#define QCD_GRAPHIC_H
#include "cd_qt_export.h"
#include <QWidget>
#include <evalspinbox.h>
#include <pistring.h>
#include "cd_qt_export.h"
namespace CDUtils {
class CDType;
class CDSection;
}
} // namespace CDUtils
namespace Ui {
class CDGraphicWidget;
@@ -42,6 +43,7 @@ class CD_QT_EXPORT CDGraphicWidget: public QWidget {
Q_OBJECT
friend class CDGraphics;
friend class GDockWidget;
public:
CDGraphicWidget(QWidget * p = 0);
@@ -60,7 +62,6 @@ private:
private slots:
signals:
};

View File

@@ -32,7 +32,7 @@
<item>
<widget class="Graphic" name="graphic">
<property name="buttons">
<set>Graphic::Autofit|Graphic::BorderInputs|Graphic::Clear|Graphic::Configure|Graphic::CursorAxis|Graphic::Fullscreen|Graphic::Legend|Graphic::Pause|Graphic::Save</set>
<set>Graphic::Autofit|Graphic::Clear|Graphic::Configure|Graphic::CursorAxis|Graphic::Export|Graphic::Fullscreen|Graphic::Legend|Graphic::Pause|Graphic::Record|Graphic::Save</set>
</property>
<property name="borderInputsVisible">
<bool>false</bool>

View File

@@ -1,4 +1,5 @@
#include "qcd_modedialog.h"
#include "ui_qcd_modedialog.h"
@@ -25,11 +26,8 @@ CDUtils::UpdateModeFlags QCDModeDialog::mode() const {
void QCDModeDialog::changeEvent(QEvent * e) {
QDialog::changeEvent(e);
switch (e->type()) {
case QEvent::LanguageChange:
ui->retranslateUi(this);
break;
default:
break;
case QEvent::LanguageChange: ui->retranslateUi(this); break;
default: break;
}
}

View File

@@ -20,17 +20,18 @@
#ifndef QCD_MODEDIALOG_H
#define QCD_MODEDIALOG_H
#include "cd_qt_export.h"
#include <QDialog>
#include <cdutils_types.h>
#include "cd_qt_export.h"
namespace Ui {
class QCDModeDialog;
}
class CD_QT_EXPORT QCDModeDialog: public QDialog
{
class CD_QT_EXPORT QCDModeDialog: public QDialog {
Q_OBJECT
public:
explicit QCDModeDialog(QWidget * parent = 0);
~QCDModeDialog();
@@ -45,7 +46,6 @@ protected:
private slots:
void on_checkSaveIndex_clicked(bool checked);
void on_checkSaveName_clicked(bool checked);
};
#endif // QCD_MODEDIALOG_H

View File

@@ -1,14 +1,17 @@
#include "qcd_model.h"
#include "cdutils_interface.h"
#include "cdutils_core.h"
#include "cdutils_interface.h"
#include "cdutils_x.h"
#include "piqt.h"
#include <QDebug>
#include "qad_types.h"
#include "qvariantedit.h"
#include <QBrush>
#include <QColor>
#include <QDebug>
#include <QMimeData>
#include "qvariantedit.h"
#include "qad_types.h"
#include <QPainter>
using namespace CDUtils;
@@ -35,8 +38,10 @@ QVariant CDItem::data(int column, int role) const {
switch (type_) {
case ItemCDType: {
CDType & t(interface->section(buildPath())[index_]);
if (t.errorString().isEmpty()) return QBrush(QColor(255, 250, 230));
else return QBrush(QColor(255, 128, 128));
if (t.errorString().isEmpty())
return QBrush(QColor(255, 250, 230));
else
return QBrush(QColor(255, 128, 128));
}
case ItemCDSection: return QBrush(QColor(230, 250, 230));
}
@@ -44,8 +49,10 @@ QVariant CDItem::data(int column, int role) const {
if (role == Qt::CheckStateRole && type_ == ItemCDType) {
CDType & t(interface->section(buildPath())[index_]);
if (column == cValue && t.cd_type() == CDType::cdK) {
if (t.type() == "b") return t.toBool() ? Qt::Checked : Qt::Unchecked;
else QVariant();
if (t.type() == "b")
return t.toBool() ? Qt::Checked : Qt::Unchecked;
else
QVariant();
}
if (column == cName_Cmd && t.cd_type() == CDType::cdX) {
return t.isSelectedX() ? Qt::Checked : Qt::Unchecked;
@@ -95,8 +102,10 @@ QVariant CDItem::value(CDType & t, int role) const {
if (t.type() == "e") {
QAD::Enum et = PI2QADEnum(t.enumValues());
et.selectValue(t.toInt());
if (role == Qt::EditRole) return QVariant::fromValue<QAD::Enum>(et);
else return et.selectedName();
if (role == Qt::EditRole)
return QVariant::fromValue<QAD::Enum>(et);
else
return et.selectedName();
}
return PI2QString(t.value());
}
@@ -112,15 +121,9 @@ bool CDItem::setData(int column, const QVariant & value) {
}
if (t.cd_type() == CDType::cdX) {
switch (column) {
case cName_Cmd:
X.setEnabled(t, value.toBool());
return true;
case cXMode:
t.setXMode((CDType::XMode)value.toInt());
return true;
case cXAvg:
t.setAvg(piMax(value.toInt(), 1));
return true;
case cName_Cmd: X.setEnabled(t, value.toBool()); return true;
case cXMode: t.setXMode((CDType::XMode)value.toInt()); return true;
case cXAvg: t.setAvg(piMax(value.toInt(), 1)); return true;
default: break;
}
}
@@ -165,8 +168,7 @@ QString CDItem::stringType(const PIString & t) const {
QAD::Enum CDItem::xModeEnum(int v) const {
QAD::Enum ret;
ret << QAD::Enumerator(CDType::X_Current, "Current")
<< QAD::Enumerator(CDType::X_All_Avg, "All, Averaging");
ret << QAD::Enumerator(CDType::X_Current, "Current") << QAD::Enumerator(CDType::X_All_Avg, "All, Averaging");
ret.selectValue(v);
return ret;
}
@@ -174,8 +176,7 @@ QAD::Enum CDItem::xModeEnum(int v) const {
// CDKDelegate
CDDelegate::CDDelegate(QObject *parent) : QStyledItemDelegate(parent) {
}
CDDelegate::CDDelegate(QObject * parent): QStyledItemDelegate(parent) {}
void CDDelegate::paint(QPainter * painter, const QStyleOptionViewItem & option, const QModelIndex & index) const {
@@ -194,8 +195,7 @@ void CDDelegate::paint(QPainter * painter, const QStyleOptionViewItem & option,
QPoint cp = v->mapFromGlobal(QCursor::pos());
if (bo.rect.contains(cp, true)) {
// bo.state |= QStyle::State_MouseOver;
if (qApp->mouseButtons().testFlag(Qt::LeftButton))
bo.state |= QStyle::State_On;
if (qApp->mouseButtons().testFlag(Qt::LeftButton)) bo.state |= QStyle::State_On;
}
}
qApp->style()->drawControl(QStyle::CE_PushButton, &bo, painter);
@@ -203,7 +203,6 @@ void CDDelegate::paint(QPainter * painter, const QStyleOptionViewItem & option,
}
}
QStyledItemDelegate::paint(painter, option, index);
}
@@ -224,7 +223,8 @@ void CDDelegate::setModelData(QWidget *editor, QAbstractItemModel *model, const
if (v.canConvert<QAD::Enum>()) {
QAD::Enum et = v.value<QAD::Enum>();
model->setData(index, et.selectedValue(), Qt::EditRole);
} else model->setData(index, v, Qt::EditRole);
} else
model->setData(index, v, Qt::EditRole);
}
@@ -283,8 +283,10 @@ QModelIndex CDItemModel::index(int row, int column, const QModelIndex &parent) c
if (parent.isValid() && parent.column() != cID) return QModelIndex();
CDItem * p = getItem(parent);
CDItem * c = p->childs.value(row, 0);
if (c) return createIndex(row, column, c);
else return QModelIndex();
if (c)
return createIndex(row, column, c);
else
return QModelIndex();
}
@@ -316,18 +318,13 @@ Qt::ItemFlags CDItemModel::flags(const QModelIndex & index) const {
if (item->type_ == CDItem::ItemCDType) {
CDType & t(interface->section(item->buildPath())[item->index_]);
if (t.cd_type() == CDType::cdK) {
if (index.column() == cExpression || index.column() == cValue)
f |= Qt::ItemIsEditable;
if (index.column() == cValue && t.type() == "b")
f |= Qt::ItemIsUserCheckable;
if (index.column() == cName_Cmd)
f |= Qt::ItemIsDragEnabled;
if (index.column() == cExpression || index.column() == cValue) f |= Qt::ItemIsEditable;
if (index.column() == cValue && t.type() == "b") f |= Qt::ItemIsUserCheckable;
if (index.column() == cName_Cmd) f |= Qt::ItemIsDragEnabled;
}
if (t.cd_type() == CDType::cdX) {
if (index.column() == cXMode || index.column() == cXAvg)
f |= Qt::ItemIsEditable;
if (index.column() == cName_Cmd)
f |= Qt::ItemIsUserCheckable | Qt::ItemIsDragEnabled;
if (index.column() == cXMode || index.column() == cXAvg) f |= Qt::ItemIsEditable;
if (index.column() == cName_Cmd) f |= Qt::ItemIsUserCheckable | Qt::ItemIsDragEnabled;
}
}
return f;
@@ -375,8 +372,7 @@ QMimeData * CDItemModel::mimeData(const QModelIndexList & indexes) const {
if (item) {
CDType & t(interface->section(item->buildPath())[item->index_]);
QMimeData * mime = new QMimeData();
mime->setText(PI2QString(CDCore::instance()->typeLetter(interface->cdType()) +
CDCore::pathToString(t.path())));
mime->setText(PI2QString(CDCore::instance()->typeLetter(interface->cdType()) + CDCore::pathToString(t.path())));
return mime;
}
}
@@ -402,7 +398,7 @@ void CDItemModel::buildItem(CDItem * it, CDSection & r) {
auto j = r.s.makeIterator();
while (j.next()) {
it->childs << new CDItem(interface, j.key(), CDItem::ItemCDSection, it);
buildItem(it->childs.back(), j.valueRef());
buildItem(it->childs.back(), j.value());
}
}

View File

@@ -20,11 +20,12 @@
#ifndef QCD_MODEL_H
#define QCD_MODEL_H
#include "cd_qt_export.h"
#include "pistring.h"
#include <QAbstractItemModel>
#include <QItemDelegate>
#include <QStyledItemDelegate>
#include "pistring.h"
#include "cd_qt_export.h"
namespace CDUtils {
class CDType;
@@ -42,7 +43,7 @@ namespace CDUtils {
cComment,
cLastColumn,
};
}
} // namespace CDUtils
namespace QAD {
struct Enum;
@@ -54,8 +55,12 @@ class CDItemModel;
class CD_QT_EXPORT CDItem {
friend class CDItemModel;
friend class CDView;
public:
enum CDItemType{ItemCDType, ItemCDSection};
enum CDItemType {
ItemCDType,
ItemCDSection
};
CDItem(CDUtils::Interface * interface, int _index, CDItemType type, CDItem * parent);
~CDItem();
QVariant data(int column, int role) const;
@@ -79,9 +84,9 @@ private:
};
class CD_QT_EXPORT CDDelegate : public QStyledItemDelegate
{
class CD_QT_EXPORT CDDelegate: public QStyledItemDelegate {
Q_OBJECT
public:
CDDelegate(QObject * parent = 0);
@@ -91,13 +96,13 @@ public:
void setModelData(QWidget * editor, QAbstractItemModel * model, const QModelIndex & index) const;
void updateEditorGeometry(QWidget * editor, const QStyleOptionViewItem & option, const QModelIndex & index) const;
QSize sizeHint(const QStyleOptionViewItem & option, const QModelIndex & index) const;
};
class CD_QT_EXPORT CDItemModel: public QAbstractItemModel {
Q_OBJECT
friend class CDView;
public:
explicit CDItemModel(int type_, QObject * parent = 0);
~CDItemModel();
@@ -127,7 +132,6 @@ private:
CDItem * root;
signals:
};
#endif // QCD_MODEL_H

View File

@@ -1,15 +1,17 @@
#include "qcd_view.h"
#include "cdutils_c.h"
#include "cdutils_core.h"
#include "cdutils_k.h"
#include "cdutils_m.h"
#include "cdutils_x.h"
#include "pifile.h"
#include "piqt.h"
#include "qcd_model.h"
#include <QDir>
#include <QMouseEvent>
#include <QSortFilterProxyModel>
#include "cdutils_k.h"
#include "cdutils_x.h"
#include "cdutils_c.h"
#include "cdutils_m.h"
#include "cdutils_core.h"
#include "qcd_view.h"
#include "qcd_model.h"
#include "piqt.h"
#include "pifile.h"
using namespace CDUtils;
@@ -75,15 +77,13 @@ void CDView::setType(int cdt) {
break;
default: break;
}
}
void CDView::mousePressEvent(QMouseEvent * e) {
if (type_ == CDType::cdC) {
QModelIndex i = indexAt(e->pos());
if (i.isValid() && i.column() == cName_Cmd)
update(i);
if (i.isValid() && i.column() == cName_Cmd) update(i);
}
QTreeView::mousePressEvent(e);
}
@@ -92,8 +92,7 @@ void CDView::mousePressEvent(QMouseEvent * e) {
void CDView::mouseReleaseEvent(QMouseEvent * e) {
if (type_ == CDType::cdC) {
QModelIndex i = indexAt(e->pos());
if (i.isValid() && i.column() == cName_Cmd)
update(i);
if (i.isValid() && i.column() == cName_Cmd) update(i);
}
QTreeView::mouseReleaseEvent(e);
}
@@ -101,8 +100,7 @@ void CDView::mouseReleaseEvent(QMouseEvent * e) {
void CDView::currentChanged(const QModelIndex & cur, const QModelIndex & prev) {
if (type_ == CDType::cdC) {
if (prev.isValid() && prev.column() == cName_Cmd)
update(prev);
if (prev.isValid() && prev.column() == cName_Cmd) update(prev);
}
QTreeView::currentChanged(cur, prev);
}
@@ -121,8 +119,7 @@ void CDView::refresh() {
proxy_->setSourceModel(model_);
setModel(proxy_);
setItemDelegateForColumn(type_ == CDType::cdC ? cName_Cmd : cValue, new CDDelegate());
if (type_ == CDType::cdX)
setItemDelegateForColumn(cXMode, new CDDelegate());
if (type_ == CDType::cdX) setItemDelegateForColumn(cXMode, new CDDelegate());
}
model_->rebuildModel();
switch ((CDType::cdT)type_) {
@@ -130,9 +127,7 @@ void CDView::refresh() {
setColumnHidden(cXMode, true);
setColumnHidden(cXAvg, true);
break;
case CDType::cdX:
setColumnHidden(cExpression, true);
break;
case CDType::cdX: setColumnHidden(cExpression, true); break;
case CDType::cdC:
case CDType::cdM:
setColumnHidden(cType, true);
@@ -144,7 +139,8 @@ void CDView::refresh() {
default: break;
}
expandAll();
for (int i = 0; i < model_->columnCount(); i++) resizeColumnToContents(i);
for (int i = 0; i < model_->columnCount(); i++)
resizeColumnToContents(i);
}
@@ -348,7 +344,7 @@ void CDView::cd_receivedX() {
X.lock();
PIVector<PIDeque<int>> xl = X.enabledList();
// piCout << "X" << xl.size();
piForeachC (PIDeque<int> & x, xl) {
for (const auto & x: xl) {
CDType & t(X[x]);
// piCout << t;
// piCout << t.path();
@@ -368,7 +364,9 @@ void CDView::cd_changedGlobal() {
void CDView::pi_cd_messageReceived(PIDeque<int> path, int type, PIString msg) {
QMetaObject::invokeMethod(this, "messageReceived", Qt::QueuedConnection,
QMetaObject::invokeMethod(this,
"messageReceived",
Qt::QueuedConnection,
Q_ARG(QString, PI2QString(CDCore::pathToString(path))),
Q_ARG(int, type),
Q_ARG(QString, PI2QString(msg)));

View File

@@ -20,22 +20,25 @@
#ifndef QCD_VIEW_H
#define QCD_VIEW_H
#include <QTreeView>
#include "piobject.h"
#include "cd_qt_export.h"
#include "piobject.h"
#include <QTreeView>
namespace CDUtils {
class CDType;
class CDSection;
}
} // namespace CDUtils
class CDItemModel;
class QSortFilterProxyModel;
class CD_QT_EXPORT CDView: public QTreeView, public PIObject
{
class CD_QT_EXPORT CDView
: public QTreeView
, public PIObject {
Q_OBJECT
PIOBJECT(CDView)
PIOBJECT(CDView);
public:
explicit CDView(QWidget * parent = 0);
~CDView();
@@ -50,9 +53,9 @@ public:
CDItemModel * CDModel() { return model_; }
protected:
void mousePressEvent(QMouseEvent * );
void mouseReleaseEvent(QMouseEvent * );
void currentChanged(const QModelIndex & cur, const QModelIndex & prev);
void mousePressEvent(QMouseEvent *) override;
void mouseReleaseEvent(QMouseEvent *) override;
void currentChanged(const QModelIndex & cur, const QModelIndex & prev) override;
public slots:
void refresh();
@@ -107,7 +110,6 @@ signals:
void _qcd_receiveSucceed(); // PRIVATE
void _qcd_receivedX(); // PRIVATE
void _qcd_changedGlobal(); // PRIVATE
};
#endif // QCD_VIEW_H

View File

@@ -1,20 +1,22 @@
#include "cddirectk.h"
#include "ui_cddirectk_type_dialog.h"
#include "cdutils_core.h"
#include "cdutils_k.h"
#include "qcd_core.h"
#include "qcd_model.h"
#include "graphic.h"
#include "piqt.h"
#include "qcd_core.h"
#include "qcd_model.h"
#include "qvariantedit.h"
#include <QFormLayout>
#include <QMimeData>
#include "ui_cddirectk_type_dialog.h"
#include <QDockWidget>
#include <QDragEnterEvent>
#include <QDragMoveEvent>
#include <QDropEvent>
#include <QMainWindow>
#include <QDockWidget>
#include <QFormLayout>
#include <QInputDialog>
#include <QMainWindow>
#include <QMimeData>
using namespace CDUtils;
@@ -59,9 +61,7 @@ void KDockWidget::addK(const CDType & t, CDDirectKTypeDialog::TypeInfo ti) {
QByteArray KDockWidget::save() const {
ChunkStream cs;
cs.add(1, windowTitle())
.add(2, getList(k_list))
.add(3, info_list);
cs.add(1, windowTitle()).add(2, getList(k_list)).add(3, info_list);
return cs.data();
}
@@ -186,21 +186,29 @@ void KDockWidget::removeRow(int r) {
if (r < 0 || r >= lay->rowCount()) return;
#if QT_VERSION >= 0x050800
QFormLayout::TakeRowResult rr = lay->takeRow(r);
if (rr.fieldItem) {delete rr.fieldItem->widget(); delete rr.fieldItem;}
if (rr.labelItem) {delete rr.labelItem->widget(); delete rr.labelItem;}
if (rr.fieldItem) {
delete rr.fieldItem->widget();
delete rr.fieldItem;
}
if (rr.labelItem) {
delete rr.labelItem->widget();
delete rr.labelItem;
}
#else
piForTimes(2) {
QLayoutItem * i = lay->itemAt(r + r);
lay->removeItem(i);
if (i) {delete i->widget(); delete i;}
if (i) {
delete i->widget();
delete i;
}
}
#endif
}
void KDockWidget::rename() {
QString nn = QInputDialog::getText(this, tr("Rename area"), tr("New area name:"),
QLineEdit::Normal, windowTitle());
QString nn = QInputDialog::getText(this, tr("Rename area"), tr("New area name:"), QLineEdit::Normal, windowTitle());
if (nn.isEmpty()) return;
setWindowTitle(nn);
}
@@ -212,14 +220,11 @@ void KDockWidget::removeK() {
int ind = a->data().toInt();
if (ind < 0 || ind >= k_list.size_s()) return;
k_list.remove(ind);
if (ind >= 0 && ind < info_list.size())
info_list.remove(ind);
if (ind >= 0 && ind < info_list.size()) info_list.remove(ind);
removeRow(ind);
}
CDDirectK::CDDirectK(QWidget * parent): QWidget(parent), Ui::CDDirectK() {
setupUi(this);
da = new QMainWindow();
@@ -229,8 +234,7 @@ CDDirectK::CDDirectK(QWidget * parent) : QWidget(parent), Ui::CDDirectK() {
}
CDDirectK::~CDDirectK() {
}
CDDirectK::~CDDirectK() {}
void CDDirectK::reset() {
@@ -245,9 +249,7 @@ QByteArray CDDirectK::save() const {
foreach(KDockWidget * d, docks) {
dstates << d->save();
}
cs.add(1, docks.size())
.add(2, dstates)
.add(3, da->saveState());
cs.add(1, docks.size()).add(2, dstates).add(3, da->saveState());
return cs.data();
}
@@ -260,8 +262,7 @@ void CDDirectK::load(QByteArray ba) {
switch (cs.read()) {
case 1: {
int s = cs.getData<int>();
piForTimes (s)
addArea();
piForTimes(s) addArea();
} break;
case 2: {
QVector<QByteArray> dstates = cs.getData<QVector<QByteArray>>();

View File

@@ -1,15 +1,16 @@
#ifndef CDDIRECTK_H
#define CDDIRECTK_H
#include "cddirectk_type_dialog.h"
#include "cdgraphics.h"
#include "ui_cddirectk.h"
#include "cddirectk_type_dialog.h"
class QFormLayout;
class KDockWidget: public QDockWidget {
Q_OBJECT
public:
KDockWidget(QString title = QString(), QMainWindow * p = 0);
@@ -39,15 +40,14 @@ private slots:
signals:
void removeRequest();
};
class CDDirectK: public QWidget, public Ui::CDDirectK
{
class CDDirectK
: public QWidget
, public Ui::CDDirectK {
Q_OBJECT
public:
explicit CDDirectK(QWidget * parent = 0);
~CDDirectK();
@@ -71,7 +71,6 @@ private slots:
void on_buttonRemoveAll_clicked();
signals:
};
#endif // CDDIRECTK_H

View File

@@ -1,10 +1,11 @@
#include "cddirectk_type_dialog.h"
#include "cdutils_core.h"
#include "piqt.h"
#include "qcd_core.h"
#include "qcd_model.h"
#include "piqt.h"
#include "spinslider.h"
#include "qvariantedit.h"
#include "spinslider.h"
CDDirectKTypeDialog::CDDirectKTypeDialog(QWidget * parent): QDialog(parent), Ui::CDDirectKTypeDialog() {
@@ -12,8 +13,7 @@ CDDirectKTypeDialog::CDDirectKTypeDialog(QWidget * parent) : QDialog(parent), Ui
}
CDDirectKTypeDialog::~CDDirectKTypeDialog() {
}
CDDirectKTypeDialog::~CDDirectKTypeDialog() {}
CDDirectKTypeDialog::TypeInfo CDDirectKTypeDialog::getType() const {
@@ -30,8 +30,6 @@ CDDirectKTypeDialog::TypeInfo CDDirectKTypeDialog::getType() const {
}
CDDirectKTypeDialog::TypeInfo::TypeInfo(int type_) {
type = type_;
params_d.resize(4);

View File

@@ -1,13 +1,16 @@
#ifndef CDDIRECTK_TYPE_DIALOG_H
#define CDDIRECTK_TYPE_DIALOG_H
#include <QDialog>
#include "ui_cddirectk_type_dialog.h"
#include <QDialog>
class CDDirectKTypeDialog: public QDialog, public Ui::CDDirectKTypeDialog
{
class CDDirectKTypeDialog
: public QDialog
, public Ui::CDDirectKTypeDialog {
Q_OBJECT
public:
explicit CDDirectKTypeDialog(QWidget * parent = 0);
~CDDirectKTypeDialog();
@@ -23,13 +26,11 @@ public:
TypeInfo getType() const;
private:
public slots:
private slots:
signals:
};
inline QDataStream & operator<<(QDataStream & s, const CDDirectKTypeDialog::TypeInfo & v) {

View File

@@ -2,25 +2,26 @@
// #include "ui_qcd_graphic.h"
#include "cdutils_core.h"
#include "cdutils_x.h"
#include "qcd_core.h"
#include "qcd_model.h"
#include "qcd_graphic.h"
#include "graphic.h"
#include "piqt.h"
#include <QMimeData>
#include "qcd_core.h"
#include "qcd_graphic.h"
#include "qcd_model.h"
#include <QDockWidget>
#include <QDragEnterEvent>
#include <QDragMoveEvent>
#include <QDropEvent>
#include <QMainWindow>
#include <QDockWidget>
#include <QInputDialog>
#include <QMainWindow>
#include <QMimeData>
using namespace CDUtils;
QStringList CDUtils::getList(const PIVector<PIDeque<int>> & x_list) {
QStringList ret;
piForeachC (PIDeque<int> & p, x_list)
for (const auto & p: x_list)
ret << PI2QString(CDCore::pathToString(p));
return ret;
}
@@ -28,14 +29,12 @@ QStringList CDUtils::getList(const PIVector<PIDeque<int> > & x_list) {
PIVector<PIDeque<int>> CDUtils::setList(const QStringList & l) {
PIVector<PIDeque<int>> ret;
foreach (QString s, l)
for (const auto & s: l)
ret << CDCore::stringToPath(Q2PIString(s));
return ret;
}
GDockWidget::GDockWidget(QString title, QMainWindow * p): QDockWidget(title, p) {
da = p;
menu = new QMenu(this);
@@ -68,7 +67,7 @@ void GDockWidget::addX(const CDType & t) {
void GDockWidget::drawX(const PIMap<PIString, PIVector<double>> & data) {
for (int i = 0; i < x_list.size_s(); ++i) {
PIString sp = CDCore::pathToString(x_list[i]);
const PIVector<double> & ch(data[sp]);
PIVector<double> ch(data.at(sp));
for (int j = 0; j < ch.size_s(); ++j)
graphic->graphic()->addPoint(ch[j], i, false);
}
@@ -188,8 +187,7 @@ CDGraphicWidget * GDockWidget::viewportGraphic(QObject * o) const {
void GDockWidget::rename() {
QString nn = QInputDialog::getText(this, tr("Rename area"), tr("New area name:"),
QLineEdit::Normal, windowTitle());
QString nn = QInputDialog::getText(this, tr("Rename area"), tr("New area name:"), QLineEdit::Normal, windowTitle());
if (nn.isEmpty()) return;
setWindowTitle(nn);
}
@@ -205,8 +203,6 @@ void GDockWidget::removeX() {
}
CDGraphics::CDGraphics(QWidget * parent): QWidget(parent), Ui::CDGraphics() {
setupUi(this);
da = new QMainWindow();
@@ -216,8 +212,7 @@ CDGraphics::CDGraphics(QWidget * parent) : QWidget(parent), Ui::CDGraphics() {
}
CDGraphics::~CDGraphics() {
}
CDGraphics::~CDGraphics() {}
void CDGraphics::reset() {
@@ -232,9 +227,7 @@ QByteArray CDGraphics::save() const {
foreach(GDockWidget * d, docks) {
dstates << d->save();
}
cs.add(1, docks.size())
.add(2, dstates)
.add(3, da->saveState());
cs.add(1, docks.size()).add(2, dstates).add(3, da->saveState());
X.lock();
cs.add(4, getList(X.enabledList()));
X.unlock();
@@ -251,8 +244,7 @@ void CDGraphics::load(QByteArray ba) {
switch (cs.read()) {
case 1: {
int s = cs.getData<int>();
piForTimes (s)
addGraphic();
piForTimes(s) addGraphic();
} break;
case 2: {
QVector<QByteArray> dstates = cs.getData<QVector<QByteArray>>();
@@ -265,9 +257,7 @@ void CDGraphics::load(QByteArray ba) {
X.setEnabledList(setList(cs.getData<QStringList>()));
X.unlock();
break;
case 5:
buttonConfigVisible->setChecked(cs.getData<bool>());
break;
case 5: buttonConfigVisible->setChecked(cs.getData<bool>()); break;
default: break;
}
}
@@ -277,8 +267,7 @@ void CDGraphics::load(QByteArray ba) {
GDockWidget * CDGraphics::graphicDock(Graphic * o) const {
if (!o) return 0;
foreach(GDockWidget * d, docks)
if (d->widget() == o)
return d;
if (d->widget() == o) return d;
return 0;
}
@@ -305,7 +294,7 @@ void CDGraphics::receivedX() {
X.lock();
PIVector<PIDeque<int>> x_list = X.enabledList();
PIVector<double> ch;
piForeachC (PIDeque<int> & p, x_list) {
for (const auto & p: x_list) {
CDType & t(X[p]);
if (t.xmode_rec() == CDType::X_Current)
ch.resize(1).fill(t.toDouble());

View File

@@ -1,11 +1,12 @@
#ifndef CDGRAPHICS_H
#define CDGRAPHICS_H
#include <QWidget>
#include "qcd_graphic.h"
#include "ui_cdgraphics.h"
#include <QDockWidget>
#include <QMenu>
#include "ui_cdgraphics.h"
#include "qcd_graphic.h"
#include <QWidget>
#include <pistring.h>
namespace CDUtils {
@@ -13,16 +14,15 @@ namespace CDUtils {
class CDSection;
QStringList getList(const PIVector<PIDeque<int>> & x_list);
PIVector<PIDeque<int>> setList(const QStringList & l);
}
} // namespace CDUtils
class QMainWindow;
class Graphic;
class GDockWidget: public QDockWidget {
Q_OBJECT
public:
GDockWidget(QString title = QString(), QMainWindow * p = 0);
@@ -50,15 +50,14 @@ private slots:
signals:
void removeRequest();
};
class CDGraphics : public QWidget, public Ui::CDGraphics
{
class CDGraphics
: public QWidget
, public Ui::CDGraphics {
Q_OBJECT
public:
explicit CDGraphics(QWidget * parent = 0);
~CDGraphics();
@@ -86,7 +85,6 @@ private slots:
void on_buttonRemoveAll_clicked();
signals:
};
#endif // CDGRAPHICS_H

View File

@@ -130,7 +130,7 @@
</property>
<property name="icon">
<iconset resource="../../../qad/libs/graphic/qad_graphic.qrc">
<normaloff>:/icons/border-line.png</normaloff>:/icons/border-line.png</iconset>
<normaloff>:/icons/edit-rename.png</normaloff>:/icons/edit-rename.png</iconset>
</property>
<property name="checkable">
<bool>true</bool>

View File

@@ -1,22 +1,24 @@
#include "edockwidget.h"
#include "cdpultwindow.h"
#include "cdutils_core.h"
#include "cdutils_k.h"
#include "cdutils_x.h"
#include "cdutils_m.h"
#include "qcd_core.h"
#include "qcd_view.h"
#include "qcd_model.h"
#include "qcd_modedialog.h"
#include "cdutils_x.h"
#include "chunkstream.h"
#include "qvariantedit.h"
#include "edockwidget.h"
#include "piqt.h"
#include "piqt_highlighter.h"
#include "qcd_core.h"
#include "qcd_modedialog.h"
#include "qcd_model.h"
#include "qcd_view.h"
#include "qcodeedit.h"
#include "qvariantedit.h"
#include <QFileDialog>
#include <QScrollBar>
#include <QImageReader>
#include <QMessageBox>
#include <QScrollBar>
using namespace CDUtils;
@@ -59,13 +61,11 @@ CDPultWindow::CDPultWindow(QWidget *parent) : EMainWindow(parent), Ui::CDPultWin
QCDCore::instance()->bindWidget(widgetK->view);
QCDCore::instance()->setDirectKEnabled(true);
X.start();
if (windowState() == Qt::WindowMinimized)
setWindowState(Qt::WindowNoState);
if (windowState() == Qt::WindowMinimized) setWindowState(Qt::WindowNoState);
}
CDPultWindow::~CDPultWindow() {
}
CDPultWindow::~CDPultWindow() {}
void CDPultWindow::loadFile(const QString & fp) {
@@ -87,12 +87,11 @@ void CDPultWindow::apply(bool sessions) {
if (sessions) {
widgetGraphics->load(session_gr);
widgetDirectK->load(session_dk);
if (!session_mw.isEmpty())
restoreState(session_mw);
if (!session_mw.isEmpty()) restoreState(session_mw);
X.lock();
PIVector<PIDeque<int>> x_list = X.enabledList();
X.unlock();
piForeachC (PIDeque<int> & p, x_list)
for (const auto & p: x_list)
X.enable(X[p]);
((CDItemModel *)widgetX->view->model())->updateModel();
widgetX->view->expandAll();
@@ -107,8 +106,7 @@ void CDPultWindow::apply(bool sessions) {
void CDPultWindow::closeEvent(QCloseEvent * e) {
EMainWindow::closeEvent(e);
if (!e->isAccepted())
return;
if (!e->isAccepted()) return;
QApplication::closeAllWindows();
session.save();
session.setFile(QString());
@@ -141,8 +139,7 @@ bool CDPultWindow::load(const QString & path) {
checkHasM->setChecked(conf.getValue("has_m").toBool());
checkDefaultConfig->setChecked(conf.getValue("default_config").toBool());
codeConfig->setText(QByteArray2QString(conf.getValue("config").toByteArray()));
if (codeConfig->text().isEmpty())
codeConfig->setText(def_config);
if (codeConfig->text().isEmpty()) codeConfig->setText(def_config);
session_gr = conf.getValue("session_gr").toByteArray();
session_dk = conf.getValue("session_dk").toByteArray();
session_mw = conf.getValue("session_mw").toByteArray();
@@ -231,8 +228,7 @@ void CDPultWindow::messageReceived(QString path, int type, QString msg) {
MessageType mt = (MessageType)type;
const CDType & t(M.root()[CDCore::stringToPath(Q2PIString(path))]);
if (t.cd_type() != CDType::cdM) return;
if (mt == MessageBox)
QMessageBox::information(this, windowTitle(), QString("[%1]\n%2").arg(PI2QString(t.name()), msg));
if (mt == MessageBox) QMessageBox::information(this, windowTitle(), QString("[%1]\n%2").arg(PI2QString(t.name()), msg));
}
@@ -262,13 +258,15 @@ void CDPultWindow::on_editFileK_valueChanged(const QVariant & p) {
}
if (!fi.path().isEmpty() && fi.path() != ".") {
dir = fi.path();
if (!dir.endsWith("/"))
dir += "/";
if (!dir.endsWith("/")) dir += "/";
}
QAD::File f = editFileK->value().value<QAD::File>();
f.file = dir + xn + dot + ext; editFileX->setValue(QVariant::fromValue(f));
f.file = dir + cn + dot + ext; editFileC->setValue(QVariant::fromValue(f));
f.file = dir + mn + dot + ext; editFileM->setValue(QVariant::fromValue(f));
f.file = dir + xn + dot + ext;
editFileX->setValue(QVariant::fromValue(f));
f.file = dir + cn + dot + ext;
editFileC->setValue(QVariant::fromValue(f));
f.file = dir + mn + dot + ext;
editFileM->setValue(QVariant::fromValue(f));
}
@@ -284,7 +282,9 @@ void CDPultWindow::on_lineSessionName_textChanged(const QString & t) {
void CDPultWindow::on_buttonIcon_clicked() {
QList<QByteArray> ifl = QImageReader::supportedImageFormats();
QStringList sfl; foreach (QByteArray s, ifl) sfl << ("*." + QString(s).toLower());
QStringList sfl;
foreach(QByteArray s, ifl)
sfl << ("*." + QString(s).toLower());
QString f = QFileDialog::getOpenFileName(this, tr("Select icon"), last_icon, tr("Images") + " (" + sfl.join(" ") + ")");
if (f.isEmpty()) return;
last_icon = f;

View File

@@ -1,26 +1,26 @@
#ifndef CDPULTWINDOW_H
#define CDPULTWINDOW_H
#include "emainwindow.h"
#include "ui_cdpultwindow.h"
#include "cdviewwidget.h"
#include "ribbon.h"
#include "emainwindow.h"
#include "piobject.h"
#include "ribbon.h"
#include "ui_cdpultwindow.h"
class CDPultWindow : public EMainWindow, public Ui::CDPultWindow
{
class CDPultWindow
: public EMainWindow
, public Ui::CDPultWindow {
Q_OBJECT
Q_ENUMS(LogIcon)
public:
public:
explicit CDPultWindow(QWidget * parent = 0);
~CDPultWindow();
void loadFile(const QString & fp);
void apply(bool sessions);
private:
void closeEvent(QCloseEvent *);
void reset(bool full = false);
bool load(const QString & path);

View File

@@ -1,9 +1,11 @@
#include "cdviewwidget.h"
#include "cdutils_core.h"
#include "qcd_core.h"
#include "qcd_model.h"
#include "qcd_modedialog.h"
#include "qcd_model.h"
#include "qvariantedit.h"
#include <QFileDialog>
@@ -17,8 +19,7 @@ CDViewWidget::CDViewWidget(QWidget * parent) : QWidget(parent), Ui::CDViewWidget
}
CDViewWidget::~CDViewWidget() {
}
CDViewWidget::~CDViewWidget() {}
void CDViewWidget::reset() {
@@ -41,14 +42,20 @@ void CDViewWidget::setFile(const QString & f) {
void CDViewWidget::on_buttonSend_clicked() {
if (view->inProgress()) {addToLog(WaitIcon, "processing..."); return;}
if (view->inProgress()) {
addToLog(WaitIcon, "processing...");
return;
}
addToLog(WaitIcon, "Sending " + tl_u + "...");
view->send();
}
void CDViewWidget::on_buttonReceive_clicked() {
if (view->inProgress()) {addToLog(WaitIcon, "processing..."); return;}
if (view->inProgress()) {
addToLog(WaitIcon, "processing...");
return;
}
addToLog(WaitIcon, "Receiving " + tl_u + "...");
view->receive();
}
@@ -65,7 +72,9 @@ void CDViewWidget::on_buttonSave_clicked() {
void CDViewWidget::on_buttonParse_clicked() {
QString path = QFileDialog::getOpenFileName(this, "Select header file", "",
QString path = QFileDialog::getOpenFileName(this,
"Select header file",
"",
QString("%1 Description(%2_description.h);;Headers(*.h)").arg(tl_u, tl_l));
if (path.isEmpty()) return;
CDUtils::UpdateModeFlags mode = CDUtils::SaveByName;

View File

@@ -1,18 +1,26 @@
#ifndef CDVIEWWIDGET_H
#define CDVIEWWIDGET_H
#include <QWidget>
#include "ui_cdviewwidget.h"
#include <QWidget>
class CDViewWidget : public QWidget, public Ui::CDViewWidget
{
class CDViewWidget
: public QWidget
, public Ui::CDViewWidget {
Q_OBJECT
public:
explicit CDViewWidget(QWidget * parent = 0);
~CDViewWidget();
enum LogIcon {NoIcon, OKIcon, FailIcon, WaitIcon};
enum LogIcon {
NoIcon,
OKIcon,
FailIcon,
WaitIcon
};
void reset();
void setType(int t);
@@ -35,7 +43,6 @@ private slots:
signals:
void addToLog(CDViewWidget::LogIcon icon, const QString & msg);
};
#endif // CDVIEWWIDGET_H

View File

@@ -1,12 +1,12 @@
#include <QApplication>
#include "cdpultwindow.h"
#include <QApplication>
int main(int argc, char * argv[]) {
QApplication a(argc, argv);
enableHighDPI();
CDPultWindow w;
w.show();
if (a.arguments().size() > 1)
w.loadFile(a.arguments()[1]);
if (a.arguments().size() > 1) w.loadFile(a.arguments()[1]);
return a.exec();
}