开源倾情奉献:基于.NET打造IP智能网络视频监控系统(二)基础类库介绍
本文为 Dennis Gao 原创技术文章,发表于博客园博客,未经作者本人允许禁止任何形式的转载。
开源倾情奉献系列链接
- 开源倾情奉献:基于.NET打造IP智能网络视频监控系统(一)开放源代码
- 开源倾情奉献:基于.NET打造IP智能网络视频监控系统(二)基础类库介绍
- 开源倾情奉献:基于.NET打造IP智能网络视频监控系统(三)命令行工具集
- 开源倾情奉献:基于.NET打造IP智能网络视频监控系统(四)服务端介绍
- 开源倾情奉献:基于.NET打造IP智能网络视频监控系统(五)客户端介绍
基础类库介绍
基础类库目录结构及名空间内容描述
- Foundation
- Common
- Gimela.Common.Configuration - 配置文件处理
- Gimela.Common.Consts - 系统常用恒量
- Gimela.Common.Cultures - 系统 Culture 封装
- Gimela.Common.ExceptionHandling - 通用 Excepton 处理封装
- Gimela.Common.Logging - 通用 Logging 封装
- Data
- Gimela.Data.DataStructures - 二叉树,B+数实现,参考《你曾实现过二叉树吗》,参考 RaptorDB
- Gimela.Data.Json - Json 序列化实现,参考 RaptorDB
- Gimela.Data.JsonExtension - Dynamic Json 移植
- Gimela.Data.MagpieDatabase - NoSQL 文档数据库,参考 RaptorDB
- Gimela.Data.Mapping - AutoMapper 移植
- Gimela.Data.Repository - Repository 模式,参考《EntityFramework用法探索(四)Repository和UnitOfWork》
- Gimela.Data.SparrowDatabase - 文件数据库,参考《C#实现文件数据库》
- Infrastructure
- Gimela.Infrastructure.AsyncModel - 异步模型实现
- Gimela.Infrastructure.Messaging - MVVM 消息通信机制
- Gimela.Infrastructure.Patterns - 模式实现,包括 Flyweight,SmartQueue,WeakAction, Singleton 等
- Gimela.Infrastructure.ResourceLocation - Service Locator 模式实现,参考《Service Locator 模式》
- Gimela.Infrastructure.Serialization - 常用序列化实现
- Management
- Gimela.Management - WMI 实现
- Media
- Gimela.Media.Imaging - AForge.NET 移植
- Gimela.Media.Utilities - AForge.NET 移植
- Gimela.Media.Video - AForge.NET 移植
- Gimela.Media.Video.DirectShow - AForge.NET 移植
- Gimela.Media.Video.VFW - AForge.NET 移植
- Gimela.Media.Vision.Motion - AForge.NET 移植
- Net
- Gimela.Net.Http - Http Server 实现,C# WebServer 移植
- Gimela.Net.Rtp - RTP(RFC3550)实现
- Gimela.Net.Sockets - TCP/UDP 通信实现
- Presentation
- Gimela.Presentation.Controls - WPF 通用控件实现
- Gimela.Presentation.Shapes - 常用 WPF XMAL 形状
- Gimela.Presentation.Skins - WPF 皮肤实现
- Gimela.Presentation.Transitions - WPF View 转换实现
- Gimela.Presentation.Windows - WPF Window 窗体的实现
- Security
- Gimela.Security - 加密及随机数
- ServiceModel
- Gimela.ServiceModel.ChannelManagement - WCF 通道管理
- Gimela.ServiceModel.ManagedDiscovery - WCF 服务自发现(WCF Discovery)
- Gimela.ServiceModel.ManagedHosting - WCF 服务宿主
- Gimela.ServiceModel.ManagedService - WCF 托管服务
- Streaming
- Gimela.Streaming.MJpegStreamingServer - MJPEG流化处理,参考《C#开源实现MJPEG流传输》
- Tasks
- Gimela.Tasks - 任务调度,包括基于 Linux CronTab 模式的实现,参考 Quartz.NET
- Text
- Gimela.Text - 基于文本的处理
- Gimela.Text.Validation - 文本验证规则
- Common
本文为 Dennis Gao 原创技术文章,发表于博客园博客,未经作者本人允许禁止任何形式的转载。