`
Donald_Draper
  • 浏览: 979791 次
社区版块
存档分类
最新评论

PipeImpl解析

    博客分类:
  • NIO
nio 
阅读更多
ServerSocketChannel定义:http://donald-draper.iteye.com/blog/2369836
ServerSocketChannelImpl解析:http://donald-draper.iteye.com/blog/2370912
SocketChannelImpl 解析一(通道连接,发送数据):http://donald-draper.iteye.com/blog/2372364
SocketChannelImpl 解析二(发送数据后续):http://donald-draper.iteye.com/blog/2372548
SocketChannelImpl 解析三(接收数据):http://donald-draper.iteye.com/blog/2372590
SocketChannelImpl 解析四(关闭通道等) :http://donald-draper.iteye.com/blog/2372717
Pipe定义:http://donald-draper.iteye.com/blog/2373540
引言:
    Pipe中包含一个可写通道SinkChannel和一个可读通道SourceChannel。sink向管道写字节序序列,
source从管道读取字节序列。
我们从Pipe的open方法开始:
public static Pipe open() throws IOException {
        return SelectorProvider.provider().openPipe();
}

这里为什么是SelectorProviderImpl,前面已经说过不在说,
//SelectorProviderImpl
 public Pipe openPipe()
        throws IOException
{
    return new PipeImpl(this);
}

下面来看通道的实现,PipeImpl
package sun.nio.ch;
import java.io.IOException;
import java.net.*;
import java.nio.ByteBuffer;
import java.nio.channels.*;
import java.nio.channels.spi.SelectorProvider;
import java.security.*;
import java.util.Random;

// Referenced classes of package sun.nio.ch:
//            IOUtil, Util, SinkChannelImpl, SourceChannelImpl

class PipeImpl extends Pipe
{
    private java.nio.channels.Pipe.SourceChannel source;//Source通道
    private java.nio.channels.Pipe.SinkChannel sink;//Sink通道
    private static final Random rnd;//
    static 
    {
        //加载net和nio资源库
        Util.load();
        byte abyte0[] = new byte[8];
	//委托IOUtil,获取8个字节序列,static native boolean randomBytes(byte abyte0[]);
        boolean flag = IOUtil.randomBytes(abyte0);
        if(flag)
            rnd = new Random(ByteBuffer.wrap(abyte0).getLong());
        else
            rnd = new Random();
    }
     PipeImpl(SelectorProvider selectorprovider)
        throws IOException
    {
        try
        {
	    //在与当前线程访问控制权限的情况下,执行Initializer,权限动作,执行Initializer的run方法
            AccessController.doPrivileged(new Initializer(selectorprovider));
        }
        catch(PrivilegedActionException privilegedactionexception)
        {
            throw (IOException)privilegedactionexception.getCause();
        }
    }
    //管道初始化Action
    private class Initializer
        implements PrivilegedExceptionAction
    {
        private final SelectorProvider sp;
        static final boolean $assertionsDisabled = !sun/nio/ch/PipeImpl.desiredAssertionStatus();
        final PipeImpl this$0;
        private Initializer(SelectorProvider selectorprovider)
        {
            this$0 = PipeImpl.this;
            super();
            sp = selectorprovider;
        }
        public volatile Object run()
            throws Exception
        {
            return run();
        }
        public Void run()
            throws IOException
        {
            ServerSocketChannel serversocketchannel;//ServerSocket通道,
            SocketChannel socketchannel;//用于source通道
            SocketChannel socketchannel1;//用于Sink通道
            serversocketchannel = null;
            socketchannel = null;
            socketchannel1 = null;
            try
            {
	        //获取本地地址
                InetAddress inetaddress = InetAddress.getByName("127.0.0.1");
                if(!$assertionsDisabled && !inetaddress.isLoopbackAddress())
                    throw new AssertionError();
		//打开一个ServerSocket通道
                serversocketchannel = ServerSocketChannel.open();
		//ServerSocket通道绑定地址
                serversocketchannel.socket().bind(new InetSocketAddress(inetaddress, 0));
                InetSocketAddress inetsocketaddress = new InetSocketAddress(inetaddress, serversocketchannel.socket().getLocalPort());
                //打开一个SocketChannel通道
		socketchannel = SocketChannel.open(inetsocketaddress);
                ByteBuffer bytebuffer = ByteBuffer.allocate(8);
		//获取通道的随机long值
                long l = PipeImpl.rnd.nextLong();
                bytebuffer.putLong(l).flip();
		//向serverSocket通道发送一个long值,即8个字节
                socketchannel.write(bytebuffer);
                do
                {
		    //serverSocket接受连接
                    socketchannel1 = serversocketchannel.accept();
                    bytebuffer.clear();
		    //接受client通道端发送过来的数据
                    socketchannel1.read(bytebuffer);
                    bytebuffer.rewind();
                    if(bytebuffer.getLong() == l)
                        break;
                    socketchannel1.close();
                } while(true);
		//根据client通道,构造SourceChannelImpl
                source = new SourceChannelImpl(sp, socketchannel);
		//根据ServerChannel接受连接产生的SocketChannel通道,构造SinkChannelImpl
                sink = new SinkChannelImpl(sp, socketchannel1);
            }
            catch(IOException ioexception1)
            {
                try
                {
                    if(socketchannel != null)
                        socketchannel.close();
                    if(socketchannel1 != null)
                        socketchannel1.close();
                }
                catch(IOException ioexception2) { }
                IOException ioexception3 = new IOException("Unable to establish loopback connection");
                ioexception3.initCause(ioexception1);
                throw ioexception3;
            }
            try
            {
	        //关闭serverSocketChannle,任务完成(建立一个SocketChannle连接)
                if(serversocketchannel != null)
                    serversocketchannel.close();
            }
            catch(IOException ioexception) { }
            break MISSING_BLOCK_LABEL_277;
            Exception exception;
            exception;
            try
            {
                if(serversocketchannel != null)
                    serversocketchannel.close();
            }
            catch(IOException ioexception4) { }
            throw exception;
            return null;
        }
    }
    //返回source通道
    public java.nio.channels.Pipe.SourceChannel source()
    {
        return source;
    }
    //返回sink通道
    public java.nio.channels.Pipe.SinkChannel sink()
    {
        return sink;
    }
}

从上面可以看出PipeImpl,内部有一个Source通道SourceChannel,Sink通道SinkChannel,一个
随机数rnd(long),还有一个管道初始化Action,初始化时加载net和nio资源库,委托IOUtil产生8个字节,然后根据8个字节生成一个随机数rnd;在构造时,在与当前线程访问控制权限的情况下,执行Initializer,权限动作,执行Initializer的run方法,即通过ServerSocketChannle和SocketChannel建立一个通道连接;首先新建一个ServerSocketChannle和SocketChannel,分别绑定地址SocketChannel向ServerSocetChannel发送随机数rnd,ServerSocetChannel接受SocketChannel连接,产生一个SocketChannel1(server),SocketChannel1接受client(SocketChannel),检验与随机数rnd,相等则建立连接。然后根据SocketChannel1(server),构造Sink通道SinkChannelImpl,根据client(SocketChannel),构造Source通道SourceChannelImpl。
我们先来看SinkChannelImpl
package sun.nio.ch;

import java.io.FileDescriptor;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.*;
import java.nio.channels.spi.SelectorProvider;

// Referenced classes of package sun.nio.ch:
//            SelChImpl, SelectionKeyImpl, SelectorImpl, SocketChannelImpl, 
//            Util

class SinkChannelImpl extends java.nio.channels.Pipe.SinkChannel
    implements SelChImpl
{
    SocketChannel sc;//关联socket通道
    public FileDescriptor getFD()
    {
        return ((SocketChannelImpl)sc).getFD();
    }

    public int getFDVal()
    {
        return ((SocketChannelImpl)sc).getFDVal();
    }

    SinkChannelImpl(SelectorProvider selectorprovider, SocketChannel socketchannel)
    {
        super(selectorprovider);
        sc = socketchannel;
    }
   //关闭通道
    protected void implCloseSelectableChannel()
        throws IOException
    {
        //通道没有注册到任何选择器
        if(!isRegistered())
            kill();
    }
   //关闭socket通道
    public void kill()
        throws IOException
    {
        sc.close();
    }
    //配置阻塞模式
    protected void implConfigureBlocking(boolean flag)
        throws IOException
    {
        sc.configureBlocking(flag);
    }
    //写字节序列
      public int write(ByteBuffer bytebuffer)
        throws IOException
    {
        return sc.write(bytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long write(ByteBuffer abytebuffer[])
        throws IOException
    {
        return sc.write(abytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long write(ByteBuffer abytebuffer[], int i, int j)
        throws IOException
    {
        if(i < 0 || j < 0 || i > abytebuffer.length - j)
            throw new IndexOutOfBoundsException();
        return write(Util.subsequence(abytebuffer, i, j));
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }
    //设置就绪操作事件
    public boolean translateAndSetReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, 0, selectionkeyimpl);
    }
    //更新就绪操作事件
    public boolean translateAndUpdateReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, selectionkeyimpl.nioReadyOps(), selectionkeyimpl);
    }
    public boolean translateReadyOps(int i, int j, SelectionKeyImpl selectionkeyimpl)
    {
        int k = selectionkeyimpl.nioInterestOps();
        int l = selectionkeyimpl.nioReadyOps();
        int i1 = j;
	//就绪事件为读1写4连接8,接受连接事件16,不是这四种事件,则抛出Error
        if((i & 32) != 0)
            throw new Error("POLLNVAL detected");
	 //为8+16,接受连接,并建立连接,设置就绪事件k
        if((i & 24) != 0)
        {
            i1 = k;
            selectionkeyimpl.nioReadyOps(i1);
            return (i1 & ~l) != 0;
        }
        if((i & 4) != 0 && (k & 4) != 0)
            i1 |= 4;//写操作
        selectionkeyimpl.nioReadyOps(i1);
        return (i1 & ~l) != 0;
    }
    //设置兴趣操作事件
    public void translateAndSetInterestOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        if((i & 4) != 0)
            i = 4;//写事件
        selectionkeyimpl.selector.putEventOps(selectionkeyimpl, i);
    }  
}

从SinkChannelImpl,可以看出内部关联一个socket通道,SinkChannelImpl关闭通道,配置通道阻塞模式,写字节序列到管道都是委托给内部的SocketChannle。
再看SourceChannelImpl
class SourceChannelImpl extends java.nio.channels.Pipe.SourceChannel
    implements SelChImpl
{
    SocketChannel sc;
    public FileDescriptor getFD()
    {
        return ((SocketChannelImpl)sc).getFD();
    }

    public int getFDVal()
    {
        return ((SocketChannelImpl)sc).getFDVal();
    }

    SourceChannelImpl(SelectorProvider selectorprovider, SocketChannel socketchannel)
    {
        super(selectorprovider);
        sc = socketchannel;
    }
   //关闭通道
    protected void implCloseSelectableChannel()
        throws IOException
    {
        //通道没有注册到任何选择器
        if(!isRegistered())
            kill();
    }
    //关闭socket通道
    public void kill()
        throws IOException
    {
        sc.close();
    }
   //配置阻塞模式
    protected void implConfigureBlocking(boolean flag)
        throws IOException
    {
        sc.configureBlocking(flag);
    }
    //读取字节序列
    public int read(ByteBuffer bytebuffer)
        throws IOException
    {
        return sc.read(bytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long read(ByteBuffer abytebuffer[], int i, int j)
        throws IOException
    {
        if(i < 0 || j < 0 || i > abytebuffer.length - j)
            throw new IndexOutOfBoundsException();
        return read(Util.subsequence(abytebuffer, i, j));
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }

    public long read(ByteBuffer abytebuffer[])
        throws IOException
    {
        return sc.read(abytebuffer);
        AsynchronousCloseException asynchronouscloseexception;
        asynchronouscloseexception;
        close();
        throw asynchronouscloseexception;
    }
     //设置就绪操作事件
    public boolean translateAndSetReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, 0, selectionkeyimpl);
    }
    //更新就绪操作事件
     public boolean translateAndUpdateReadyOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        return translateReadyOps(i, selectionkeyimpl.nioReadyOps(), selectionkeyimpl);
    }
    public boolean translateReadyOps(int i, int j, SelectionKeyImpl selectionkeyimpl)
    {
        int k = selectionkeyimpl.nioInterestOps();
        int l = selectionkeyimpl.nioReadyOps();
        int i1 = j;
	//就绪事件为读1写4连接8,接受连接事件16,不是这四种事件,则抛出Error
        if((i & 32) != 0)
            throw new Error("POLLNVAL detected");
	 //为8+16,接受连接,并建立连接,设置就绪事件k
        if((i & 24) != 0)
        {
            i1 = k;
            selectionkeyimpl.nioReadyOps(i1);
            return (i1 & ~l) != 0;
        }
        if((i & 1) != 0 && (k & 1) != 0)
            i1 |= 1;//读事件
        selectionkeyimpl.nioReadyOps(i1);
        return (i1 & ~l) != 0;
    }
    //设置兴趣操作事件
    public void translateAndSetInterestOps(int i, SelectionKeyImpl selectionkeyimpl)
    {
        if((i & 1) != 0)
            i = 1;//读事件
        selectionkeyimpl.selector.putEventOps(selectionkeyimpl, i);
    }
}

从SourceChannelImpl,可以看出内部关联一个socket通道,SourceChannelImpl关闭通道,配置通道阻塞模式,从管道读取字节序列都是委托给内部的SocketChannle。
总结:
     PipeImpl,内部有一个Source通道SourceChannel,Sink通道SinkChannel,一个随机数rnd(long),还有一个管道初始化Action,初始化时加载net和nio资源库,委托IOUtil产生8个字节,然后根据8个字节生成一个随机数rnd;在构造时,在与当前线程访问控制权限的情况下,执行Initializer,权限动作,执行Initializer的run方法,即通过ServerSocketChannle和SocketChannel建立一个通道连接;首先新建一个ServerSocketChannle和SocketChannel,分别绑定地址SocketChannel向ServerSocetChannel发送随机数rnd,ServerSocetChannel接受SocketChannel连接,产生一个SocketChannel1(server),SocketChannel1接受client(SocketChannel),检验与随机数rnd,相等则建立连接。然后根据SocketChannel1(server),构造Sink通道SinkChannelImpl,根据client(SocketChannel),构造Source通道SourceChannelImpl。
    SinkChannelImpl,内部关联一个socket通道,SinkChannelImpl关闭通道,配置通道阻塞模式,写字节序列到管道都是委托给内部的SocketChannle。
    SourceChannelImpl,内部关联一个socket通道,SourceChannelImpl关闭通道,配置通道阻塞模式,从管道读取字节序列都是委托给内部的SocketChannle。
分享到:
评论

相关推荐

    PipeImpl.rar_Java编程_Unix_Linux_

    标题中的"PipeImpl.rar"可能是一个包含Java编程中关于实现管道(Pipe)接口源代码的压缩文件,专门针对Unix和Linux操作系统。在这个场景下,我们主要讨论的是在这些类Unix系统中如何用Java来实现I/O管道。 Java编程在...

    数据库基础测验20241113.doc

    数据库基础测验20241113.doc

    微信小程序下拉选择组件

    微信小程序下拉选择组件

    DICOM文件+DX放射平片-数字X射线图像DICOM测试文件

    DICOM文件+DX放射平片—数字X射线图像DICOM测试文件,文件为.dcm类型DICOM图像文件文件,仅供需要了解DICOM或相关DICOM开发的技术人员当作测试数据或研究使用,请勿用于非法用途。

    Jupyter Notebook《基于双流 Faster R-CNN 网络的 图像篡改检测》+项目源码+文档说明+代码注释

    <项目介绍> - 基于双流 Faster R-CNN 网络的 图像篡改检测 - 不懂运行,下载完可以私聊问,可远程教学 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------

    使用epf捕获没有CA证书的SSLTLS明文(LinuxAndroid内核支持amd64arm64).zip

    c语言

    (源码)基于Arduino的天文数据库管理系统.zip

    # 基于Arduino的天文数据库管理系统 ## 项目简介 本项目是一个基于Arduino的天文数据库管理系统,旨在为Arduino设备提供一个完整的天文数据库,包括星星、星系、星团等天体数据。项目支持多种语言的星座名称,并提供了详细的天体信息,如赤道坐标、视星等。 ## 项目的主要特性和功能 星座目录包含88个星座,提供拉丁语、英语和法语的缩写和全名。 恒星目录包含494颗亮度达到4等的恒星。 梅西耶目录包含110个梅西耶天体。 NGC目录包含3993个NGC天体,亮度达到14等。 IC目录包含401个IC天体,亮度达到14等。 天体信息每个天体(不包括星座)提供名称、命名、相关星座、赤道坐标(J2000)和视星等信息。 恒星额外信息对于恒星,还提供每年在赤经和赤纬上的漂移以及视差。 ## 安装使用步骤 1. 安装库使用Arduino IDE的库管理器安装本项目的库。 2. 解压数据库将db.zip解压到SD卡中。

    (源码)基于JSP和SQL Server的维修管理系统.zip

    # 基于JSP和SQL Server的维修管理系统 ## 项目简介 本项目是一个基于JSP和SQL Server的维修管理系统,旨在提供一个高效、便捷的维修管理解决方案。系统涵盖了从维修订单的创建、管理到配件的录入、更新等多个功能模块,适用于各类维修服务行业。 ## 项目的主要特性和功能 1. 用户管理 管理员和客户的注册与登录。 管理员信息的管理与更新。 客户信息的创建、查询与更新。 2. 维修订单管理 维修订单的创建、查询与更新。 维修回执单的创建与管理。 3. 配件管理 配件信息的录入与更新。 配件库存的管理与查询。 4. 评价与反馈 客户对维修服务的评价记录。 系统反馈信息的收集与管理。 5. 数据加密与安全 使用MD5加密算法对用户密码进行加密存储。 通过过滤器实现登录验证,确保系统安全。 ## 安装使用步骤

    devecostudio-windows-3.1.0.501.zip

    HUAWEI DevEco Studio,以下简称DevEco Studio)是基于IntelliJ IDEA Community开源版本打造,为运行在HarmonyOS和OpenHarmony系统上的应用和服务(以下简称应用/服务)提供一站式的开发平台。 作为一款开发工具,除了具有基本的代码开发、编译构建及调测等功能外,DevEco Studio还具有如下特点: - 高效智能代码编辑:支持ArkTS、JS、C/C++等语言的代码高亮、代码智能补齐、代码错误检查、代码自动跳转、代码格式化、代码查找等功能,提升代码编写效率。更多详细信息,请参考[编辑器使用技巧] - 低代码可视化开发:丰富的UI界面编辑能力,支持自由拖拽组件和可视化数据绑定,可快速预览效果

    《计算机视觉技术》实验报告-8.1提取车辆轮廓

    《计算机视觉技术》实验报告-8.1提取车辆轮廓

    springboot小徐影城管理系统(代码+数据库+LW)

    随着现在网络的快速发展,网上管理系统也逐渐快速发展起来,网上管理模式很快融入到了许多生活之中,随之就产生了“小徐影城管理系统”,这样就让小徐影城管理系统更加方便简单。 对于本小徐影城管理系统的设计来说,系统开发主要是采用java语言技术,在整个系统的设计中应用MySQL数据库来完成数据存储,具体根据小徐影城管理系统的现状来进行开发的,具体根据现实的需求来实现小徐影城管理系统网络化的管理,各类信息有序地进行存储,进入小徐影城管理系统页面之后,方可开始操作主控界面,主要功能包括管理员:首页、个人中心、用户管理、电影类型管理、放映厅管理、电影信息管理、购票统计管理、系统管理、订单管理,用户前台;首页、电影信息、电影资讯、个人中心、后台管理、在线客服等功能。 本论文主要讲述了小徐影城管理系统开发背景,该系统它主要是对需求分析和功能需求做了介绍,并且对系统做了详细的测试和总结。具体从业务流程、数据库设计和系统结构等多方面的问题。望能利用先进的计算机技术和网络技术来改变目前的小徐影城管理系统状况,提高管理效率。

    C++与Matlab实现SIFT特征提取算法+项目源码+文档说明+代码注释

    <项目介绍> - SIFT特征提取算法C++与Matlab实现 - 不懂运行,下载完可以私聊问,可远程教学 1、该资源内项目代码都经过测试运行成功,功能ok的情况下才上传的,请放心下载使用! 2、本项目适合计算机相关专业(如计科、人工智能、通信工程、自动化、电子信息等)的在校学生、老师或者企业员工下载学习,也适合小白学习进阶,当然也可作为毕设项目、课程设计、作业、项目初期立项演示等。 3、如果基础还行,也可在此代码基础上进行修改,以实现其他功能,也可用于毕设、课设、作业等。 下载后请首先打开README.md文件(如有),仅供学习参考, 切勿用于商业用途。 --------

    (1991-2024年)国家自然、社科基金部分名单(含部分标书)(最新!!!)

    数据介绍 数据名称:国家自然、社科基金部分名单 数据年份:1991-2024年 样本数量:10万+ 数据格式:PDF、excel

    卓晴-信号与系统课件.pdf

    卓晴

    as-bundled-clients

    as-bundled-clients

    学习时最后的资料包括面试等信息

    学习时最后的资料包括面试等信息

    (源码)基于Spring Boot和Ant Design的雨选课系统.zip

    # 基于Spring Boot和Ant Design的雨选课系统 ## 项目简介 雨选课系统是一个基于Spring Boot和Ant Design框架构建的前后端分离的选课系统。该系统实现了学生选课、成绩查询、教师成绩修改、课程编辑、课程新增等功能。登录信息使用Redis存储,并支持课程图片的上传功能。 ## 项目的主要特性和功能 1. 用户登录与权限管理 学生、教师和管理员分别有不同的登录权限。 登录信息使用Redis进行存储。 2. 课程管理 学生可以查看可选课程列表,并进行选课和退选操作。 教师可以查看自己教授的课程,并修改学生成绩。 管理员可以编辑和新增课程。 3. 成绩管理 学生可以查询自己的成绩。 教师可以修改学生的成绩。 4. 图片上传 支持课程图片的上传和展示。 5. 日志记录 系统记录请求和响应的日志信息,便于问题追踪和性能分析。

    数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)

    数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目),含有代码注释,满分大作业资源,新手也可看懂,期末大作业、课程设计、高分必看,下载下来,简单部署,就可以使用。该项目可以作为课程设计期末大作业使用,该系统功能完善、界面美观、操作简单、功能齐全、管理便捷,具有很高的实际应用价值。 数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅点餐系统源码+数据库+文档说明(高分项目)数据库期末作业基于Python+mysql的餐厅

    江苏镇江两座小桥的技术状况评估与维修建议

    内容概要:本文针对镇江市丹徒区辛丰镇的两座小型桥梁(大叶二组滚水坝桥与东联组桥)进行了详细的技术状况评定和现状调查。主要内容包括:桥梁的基本参数描述、桥梁各部分的具体检查结果以及存在的具体病害及其原因分析,同时依据《公路桥梁技术状况评定标准》对每座桥梁分别给出了综合评分和技术状况等级,并提出了具体的维护与修复建议。大叶二组滚水坝桥技术状况良好(2类),但需要解决桥面铺装裂缝和桥墩的混凝土剥落问题;而东联组桥则需重点关注桥面施工不完整及护栏损坏等问题。 适用人群:桥梁管理人员、维护工作人员及城市基础设施规划相关人员。 使用场景及目标:适用于中小跨度桥梁的常规检查与维修决策制定过程中,旨在帮助专业人士快速掌握桥梁的实际状态,确保桥梁安全可靠运行。 其他说明:文中附有多张实拍图片用于直观展示桥梁现状及存在问题。

    基于套接字API开发的高性能高稳定性跨平台MQTT客户端,可以在嵌入式设备FreeRTOS LiteOS RTThre.zip

    c语言

Global site tag (gtag.js) - Google Analytics