KbmMW 4.50.00 测试版发布
We are happy to announce the release of kbmMW v. 4.50.00 Beta
Professional and Enterprise Edition with XE6 support.
4.50.00 Beta 1 May 12 2014
New stuff
=========
- Added XSD parser support and code generator. A demo is
included, showing how the XSD parser is used
in combination with the code generator, to generate Pascal
objects that kbmMW can use for marshalling
to and from objects.
- Added CaptureMode to kbmMW RemoteDesktop client/server
classes to allow for selecting between GDI and DirectX.
Default is GDI.
- Added new ViewMode types including mwrdvm_Device to kbmMW
RemoteDesktop client/server classes to allow for using
the best fitting view mode, compared to the current screen
bitdepth on the server end.
By using the best fitting view mode, the RemoteDesktop server
part use less CPU.
- Added support in kbmMW RemoteDesktop to detect if screen
capture is to slow to be useful (typically
on old graphic cards like Matrox G400 with Hardware
accelleration enabled).
- Added new kbmMWNullable generic. If you need to define a
simple datatype that should be nullable, you can
define it as var myInt:kbmMWNullable<integer>; for example.
It can be used as any regular variable.
Use myInt.IsNull to check if its null. If you have compile
error due to conversion problems you can
use myInt.Value to access the value directly.
- Added new TkbmMWDateTime type to replace TDateTime. It works
similar to TDateTime except it is timezone and null aware,
and knows if its being used to store a time, a date or a date
time value, and thus can
provide correct matching string conversion automatically.
It supports more than 760 different timezone abbrevations,
and has full support for ISO8601 formats.
Internally it always store time as UTC with a timezone
difference, depending on the chosen timezone.
On assigning a TDateTime value to it, it always assumes not
timezone given (and thus its UTC).
When assigning Now to it, you will want to use the LocalTime
property to assign now.
Eg. mytime:TkbmMWDateTime; mytime.LocalTime:=Now. By doing
so, it will autodetect the appropriate
local timezone.
- Added new very fast TkbmMWLockFreeHashArray to kbmMWGlobal.
Its as the names imply a lock free
hash array which stores an integer value with a uint64 key.
- Enhanced TkbmMWLock to automatically detect lock escalation,
and allow finetuning of spin/sleep time.
Tests show that TkbmMWLock is now the fastest implementation
of a MREW with lock escalation handling for
Delphi/C++Builder. In addition it allows for checking which
threads holds which locks at any time,
via the kbmMWConcurrentMREWReadLocks hash array.
- Added to kbmMWGlobal.pas
function kbmMWExpectChars(var APChar:PChar;
const AChars:TSysCharSet):boolean;
function kbmMWSearchChars(var APChar:PChar;
const AChars:TSysCharSet):boolean;
function kbmMWSearchDigit(var APChar:PChar):boolean;
function kbmMWSearchNonDigit(var APChar:PChar):boolean;
function kbmMWGetDateFromWeek(const AYear:integer;
const AWeekNo:integer;
const ADayInWeek:integer):TDateTime;
function kbmMWGetDateFromDayOfYear(const AYear:integer;
const ADayOfYear:integer):TDateTime;
function kbmMWRoundToPowerOf2(
const AValue:integer):integer;
function kbmMWMurmurHash3(const AValue:cardinal):cardinal;
function kbmMWMurmurHash3(const AValue:int64):int64;
function kbmMWDigestToString(
const ADigest:TkbmMWDigest256):string;
procedure TkbmMWStringBuilder.Append(
const AStringBuilder:TkbmMWStringBuilder);
- Added function TkbmMWRegisteredTransportStreamList.
ControllerClassByID(AID:string):
TkbmMWCustomTransportStreamControllerClass;
- Added support for multiple statements in SQLite adapter
function TkbmMWSQLiteConnection.Query(
const AClass:TkbmCustomMemTableClass;
const ASQL:string):TkbmCustomMemTable;
Only last will however be returned.
- Added to kbmMWXML.pas:
TkbmMWXMLNativeDataType to handle true native XML datatype
understanding.
(TkbmMWDOMXMLNode) property
ChildrenByName[AName:string]:TkbmMWDOMXMLNodeList read
GetChildrenByName;
(TkbmMWDOMXMLNode) property
ChildrenByID[AName:string]:TkbmMWDOMXMLNodeList read
GetChildrenByID;
(TkbmMWDOMXMLNode) function GetNativeDataType(
AType:string = ''):TkbmMWXMLNativeDataType;
(TkbmMWDOMXMLNode) function GetDataTypeName(
var ANameSpace:string; AType:string=''):string;
(TkbmMWDOMXMLNode) property AttribByNameIsNil[
const AName:string]:boolean read GetAttribByNameIsNil
write SetAttribByNameIsNil;
- Added support for ftShortint as parameter and field type.
- Added support for int64/uint64 versions of CompareAndExchange
for pre XE.
- Added support for XE6.
- Added new HTTP FastCGI able custom service and demo
application.
Changes/minor additions
=======================
- Updated object marshaller (incl. JSON and XML) to support new
kbmMWNullable and TkbmMWDateTime types.
Internally there have been made many changes to also support
objects defined by XSD import.
- Dropped own implementation of TkbmMWEvent, and instead
aliases TkbmMWEvent to fastest Delphi/C++Builder
implementation
for given Embarcadero version.
- Removed from kbmMWGlobal.pas
function kbmMWDateTimeToISO8601String(
const AValue:TDateTime):string;
function kbmMWISO8601StringToDateTime(
const AString:string):TDateTime;
function kbmMWDateToISO8601String(
const AValue:TDateTime):string;
function kbmMWISO8601StringToDate(
const AString:string):TDateTime;
function kbmMWTimeToISO8601String(
const AValue:TDateTime):string;
function kbmMWISO8601StringToTime(
const AString:string):TDateTime;
they have been replaced with TkbmMWDateTime.
- Removed from kbmMWXML.pas:
function kbmMWXMLTryStringToDateTime(AValue:string;
var ADateTime:TDateTime):boolean;
function kbmMWXMLDateTimeToString(AValue:TDateTime):string;
function kbmMWXMLStringToDateTime(AString:string):TDateTime;
function kbmMWXMLDateToString(AValue:TDateTime):string;
function kbmMWXMLStringToDate(AString:string):TDateTime;
function kbmMWXMLTimeToString(AValue:TDateTime):string;
function kbmMWXMLStringToTime(AString:string):TDateTime;
Instead use TkbmMWDateTime functionality.
- Modified in kbmMWGlobal.pas
class function TkbmMWPlatformMarshal.UTF8Decode(
const ABytes:TkbmMWBytes; ACount:TkbmNativeInt =
-1):string;
Added optional ACount.
- Made general use of TkbmMWLock and TkbmMWDateTime internally.
- Performance optimized XML parser.
Large XML files now parses 20-fold faster.
(example 165 MB XML now parsed in 7.6 secs. Before parsed
in 3.5 minutes)
Fixes
=====
- Fixed bugs in kbmMWCipherHash.pas:
procedure TkbmMWCustomHash.UpdateString(const Str:string);
function TkbmMWCustomCipher.EncryptString(
const Str:string):string;
function TkbmMWCustomCipher.DecryptString(
const Str:string):string;
function TkbmMWCustomBlockCipher.EncryptString(
const Str:string):string;
function TkbmMWCustomBlockCipher.DecryptString(
const Str:string):string;
- Fixed bugs in kbmMWMime.pas:
function kbmMWMimeEncodeString(const S:string):string;
function kbmMWMimeEncodeStringNoCRLF(const S:string):string;
function kbmMWMimeDecodeString(const S:string):string;
function kbmMWMimeDecodeString2Bytes(const S:string):
TkbmMWBytes;
procedure kbmMWMimeEncode(const InputBuffer:TkbmMWBytes;
var InputBufferOffset:cardinal; const InputByteCount:
Cardinal; var OutputBuffer:TkbmMWBytes;
var OutputBufferOffset:cardinal);
function kbmMWMimeDecodedSize(const InputSize: Cardinal):
Cardinal;
- Fixed bug in SQLite adapter when query didnt result in fields.
- Fixed function kbmMWEncodingToString(
const AEncoding:TEncoding):string; to use correct lowercase
encoding names.
- Fixed bugs in kbmMWCustomClientMessagingTransport.pas
- Fixed multi database operation on user transaction bug.
- Fixed compilation for pre XE.
- Fixed transport backwards compatibility support.
- Fixed client app automatically linking in TkbmMWServer in
kbmMW Ent Edition.
The Professional and Enterprise Edition is available for all with a
current active SAU.
If your SAU has run out, please visit our shop to extend it with another
12 months.
An earlier version of kbmMW CodeGear Edition is available for free for
Delphi XE3/Win32 and includes kbmMemTable CodeGear Edition.
KbmMW 4.50.00 测试版发布的更多相关文章
- KbmMW 4.40.00 测试发布
经过漫长的等待,支持移动开发的kbmmw 4.40.00 终于发布了,这次不但支持各个平台的开发, 而且增加了认证管理器等很多新特性,非常值得升级.具体见下表. 4.40.00 BETA 1 Oct ...
- kbmmw 5.06.00 beta 发布
原生.高效.可扩展.跨平台通信库来了. we are happy to announce v5.06.00 BETA of our popular middleware for Delphi and ...
- kbmMW 5.07.00试用笔记
在kbmMW 5.06.20试用笔记中遇到的问题,在这个版本中,基本都解决了.但还是发现修正后存在的小问题及新问题: 1.Resolve返回值错误 当提交的ClientQuery是执行一条sql语句, ...
- PDF 补丁丁 0.4.3.1342 测试版发布:修复崩溃问题
PDF 补丁丁 0.4.3.1342 测试版发布了. 此测试版修复了之前测试版在合并文件.书签编辑器.文档结构探查器中出现的崩溃问题. 推荐下载了0.4.3测试版的网友尽快更新.
- PDF 补丁丁 0.4.2.1023 测试版发布:新增旋转页面功能
新的测试版发布啦.此版本增加了旋转页面的功能. 在“PDF文档选项”对话框的“页面设置”选项卡中,可设置需要旋转的页面(输入页码范围),以及旋转角度. 此外,还修复了统一页面尺寸功能的小问题.
- kbmmw 5.05.00 发布
新年前最后几天,kbmmw 发布了新版本,增加一大波功能.we are happy to announce v5.05.50 of our popular middleware for Delphi ...
- KbmMW 4.30.00 发布
今天早上,KbmMW发布了4.30.00 版,这个版本开始支持XE4 的WIN/WIN64/OSX. 暂时不支持ios开发,同时加强了通过JSON 的对象序列化.还有就是解决了我提交的几个有关 汉字处 ...
- KbmMW 4.40.00 正式版发布
经过快3个月的测试,kbmmw 4.40 正式版终于在圣诞节前发布了. We are happy to announce the availability of a new kbmMW release ...
- KBMMW 4.92.00 发布
We are happy to announce the release of kbmMW Professional and Enterprise Edition. Yet again kbmMW c ...
随机推荐
- Java的Synchronized
原理,注意看输入输出,不了解原理是想不到会这样输出的. http://www.cnblogs.com/paddix/p/5367116.html 还有一个要注意的是一个对象一个monitor类
- HTML5 移动端 自定义点击事件
/* 封装的TAP事件 */ (function () { /** * IOS 和 PC 端 只需要创建一次就能一直使用 * Android 手机 每次使用的时候都需要从新创建 */ function ...
- redis详解(三)
1. 使用redis有哪些好处? (1) 速度快,因为数据存在内存中,类似于HashMap,HashMap的优势就是查找和操作的时间复杂度都是O(1) (2) 支持丰富数据类型,支持string,li ...
- Tomcat 异常关闭排查
N次请求 tomcat conf/server.xml https://blog.csdn.net/qq_30121245/article/details/52861935 pattern分析 %a ...
- Java 跨域 CrossOrigin注解 Filter拦截 Nginx配置
说明 资源请求的发起方与请求的资源不在同一个域中的: 一般的,只要网站的[协议名protocol].[主机host].[端口号port]这三个中的任意一个不同,网站间的数据请求与传输便构成了跨域调用: ...
- webserive学习记录2-cxf框架基础使用
cxf是一个webservice的框架,类似的还有axis,下面说一下cxf的基本使用. 首先要下载cxf的文件,然后要在项目中引入jar包,当然也可以通过maven进行管理.我用的是最新的3.2.1 ...
- Xtrabackup安装及使用
官方安装步骤:https://www.percona.com/doc/percona-xtrabackup/2.4/installation/yum_repo.html 安装percona repo源 ...
- STS或eclipse安装SVN插件
安装sts--SVN插件 简介:sts是与eclipse类似的Java IDE开发工具(不了解的百度) 1.sts菜单栏 help->install New Software 依据大家的版本选择 ...
- git冲突解决方案 Intellij IDEA
一般在团队合作开发一个项目的过程中,经常出现两个人同时修改一个文件然后都向主master提交commit,这样就会产生冲突(conflict),那么这种情况如何解决? 1 新建分支 如果项目的主分支是 ...
- java的Map浅析
Map<K,V>是以键-值对存储的(key-value), 而Entry<K,V>是Map中的一个接口,Map.Entry<K,V>接口主要用于获取.比较 key和 ...