基于IntelliJ IDEA/Android Studio插件开发指南(推荐)
为防止盗链,本文首发于于果的博客园,转载请注明出处!原文链接:
前言
目前在为安卓手机qq做自动化的相关工作,包括ui自动化,逻辑层自动化等。使用到的uiautomator
等框架,需要在android studio进行编码工作。
其中很多工作如果做到插件化的话,可以有效地节省时间成本,提升大家的自动化效率。
比如运行自动化的时候,需要用到我们自定义的shell命令。我们可以通过插件来实现一键运行。
在运行adb shell am instrument
命令的时候,需要编译出test apk
和target apk
。手q整体的git仓库很大,编译耗时很久。我们想着通过一些方法来优化这个耗时。其中一个步骤就是,把我们代码目录下的变更,同步到一个编译目录下。
这个小功能的最合适的形态,自然就是android studio上的一个插件。点击一个按钮,一键同步,那可真是在米奇妙妙屋吃妙脆角——妙到家了!
android studio是基于intellij idea开发的,所以开发android studio的插件,其实就是开发idea的插件。
根据官方推荐,使用idea ide来开发idea插件。
插件开发的基本流程
1. 环境配置
1.1 安装pdk
正如java开发需要安装java devkit,idea插件开发也需要安装plugin devkit。pdk的作用是为插件提供idea内建支持以及相关库函数。
打开intellij idea --> preferences --> plugins
,如果没有安装,可以在marketplace里面搜索,并安装。
1.2 配置插件开发sdk
配置开发 intellij 平台插件的sdk也就是intellij platform plugin sdk,基于 jdk 之上运行,类似于开发 android 应用需要 android sdk。
切换到 file --> project structure
,选择左侧栏 platform settings
下的 sdks
,点击+
按钮,先选择 add jdk
,指定 jdk 的路径;再选择add intellij platform plugin sdk
,指定上面添加的jdk为插件需要的jdk。需要注意的是,从idea 2020.3开始,不能再使用java1.8版本。因为idea 2020.3版本基于java11构建,所以如果想要开发2020.3及以后版本的idea的插件,需要选择java11版本。
2. 新建插件工程
file --> new --> project
,在弹出的窗口中选择gradle,然后选择java(这表明我们使用java语言开发)和intellij platform plugin,点击next,然后设置项目的名称和位置,点击finish完成创建。
3. action
我们在intellij自定义的插件可以添加到菜单项目(如右键菜单中)或者是放在工具栏中。当用户点击时触发一个动作事件,intellij则会回调anaction
子类的actionperformed
函数。因此我们只需重写actionperformed
函数即可。我们可以认为action是插件的触发入口。我们可以直接右键new --> plugin devkit --> action
新建action,这个action是anaction的子类。
在接下来的弹出窗口中,我们可以创建一个action。
- action id:这个action的唯一标识
- class name:action的类名
- name:action的名称
- description: action的描述信息
- groups:这个标签指定我们自定义的插件应该放入到哪个菜单下面。 在intellij idea菜单栏中有很多菜单如file、edit、view、navigate、code、……、help等。他们的id一般是
菜单名+menu
的方式。比如,我们想将我们自定义的插件放到help菜单中,作为help菜单的子选项。那么在groups中就指定helpmenu
。左侧的anchor属性用于描述位置,主要有四个选项:first、last、before、after。他们的含义如下:
first:放在最前面
last:放在最后
before:放在relative-to-action属性指定的id的前面
after:放在relative-to-action属性指定的id的后面
keyboard shortcuts:可以为这个action指定快捷键
public class testaction extends anaction { @override public void actionperformed(anactionevent e) { notificationgroup notificationgroup = new notificationgroup("testid", notificationdisplaytype.balloon, false); /** * desc: 这是一个idea的通知,会通知到idea右下角的悬浮小窗 * content : 通知内容 * type :通知的类型,warning,info,error */ notification notification = notificationgroup.createnotification("测试通知", messagetype.info); notifications.bus.notify(notification); } }
创建完之后,我们也可以在src/resources/meta-inf/plugin.xml
中,看到我们之前写入的action信息,如果想要修改,可以在这个配置文件中直接修改。
<actions> <!-- add your actions here --> <action id="testid" class="com.example.yuguo.testaction" text="通知" description="测试通知的功能"> <add-to-group group-id="toolsmenu" anchor="first"/> </action> </actions>
4. 配置描述
src/resources/meta-inf/plugin.xml
是整个插件的配置文件,里面定义了插件的名称,描述信息,支持的idea版本号,作者信息,action的相关信息等。
<idea-plugin> <!--插件的id,属于全局唯一标识--> <id>plugin.test</id> <!--插件的名称--> <name>plugintest</name> <vendor email="xxxx@example.com" url="">author_name</vendor> <!--插件的描述信息,支持html--> <description><![cdata[ plugin test<br> <em>v1.0</em> ]]></description> <extensions defaultextensionns="com.intellij"> <!-- add your extensions here --> </extensions> <actions> <!-- 这里是刚刚定义的插件信息 --> <action id="testid" class="com.example.yuguo.testaction" text="通知" description="测试通知的功能"> <add-to-group group-id="toolsmenu" anchor="first"/> </action> </actions> </idea-plugin>
5. 调试、打包
调试
等到配置完成后,在idea右侧的gradle一栏中,有intellij的集合。点击里面的runide,可以打开一个沙盒,里面运行包含着该插件的idea实例。也可以右键选择debug模式运行。
打包
点击上图的buildplugin,就可以在build/distributions/
目录下面生成插件zip包,这个包就是我们需要的最终产物。在idea设置preferences --> plugins
,点击installed旁边的设置按钮,选择install plugin from disk
,然后选择这个zip,就可以安装到idea中了。
插件的组件
gui
toolwindow
工具视窗(toolwindow)的功能主要是进行信息的显示,同时用户还可以直接在toolwindow中进行操作调用工具,比如ide下方默认的terminal、git等。作为ide侧边栏中较大的一部分,toolwindow与用户的交互在整个ui中非常重要。
实现toolwindow主要分为两步,第一步创建类实现toolwindowfactory接口,编写需求的toolwindowfactory实例,第二步在plugin.xml中注册该toolwindow。
当用户单击工具窗口按钮时,将调用工厂类的方法createtoolwindowcontent(),并初始化工具窗口的ui。此过程可确保未使用的工具窗口不会在启动时间或内存使用上造成任何开销:如果用户不与插件的工具窗口进行交互,则不会加载或执行任何插件代码。
public class toolfactorycompute implements toolwindowfactory { private toolwindow mytoolwindow; private jpanel mypanel; private jtextarea textcontent; private jscrollpane myscrollpane; /** * @param project 项目 * @param toolwindow 窗口 */ @override public void createtoolwindowcontent(@notnull project project, @notnull toolwindow toolwindow) { mytoolwindow = toolwindow; // 将显示面板添加到显示区 contentfactory contentfactory = contentfactory.service.getinstance(); content content = contentfactory.createcontent(mpanel, "control", false); toolwindow.getcontentmanager().addcontent(content); } }
在plugin.xml中注册toolwindow。
<extensions defaultextensionns="com.intellij"> <!-- canclosecontents表示是否可以关闭这个toolwindow, anchor表示toolwindow的位置, id是toolwindow的名字, factoryclass表示toolwindow的工厂类 --> <toolwindow canclosecontents="false" anchor="bottom" id="compute code lines" icon="/mytoolwindow/test.png" factoryclass="tools.toolfactorycompute"> </toolwindow> </extensions>
dialog
会话框(dialog)可以与用户交互,获取用户自定义输入的内容,也可以作为提示弹窗,告诉用户信息。会话框的实现需要定义一个继承了idea的dialogwrapper
抽象类的子类,这个子类就是自定义的会话框实现,所有的样式定义、功能触发都是放到这个子类里的,比如以下实现:
public class formtestdialog extends dialogwrapper { private string projectname; //假如需要获取到项目名,作为该类的属性放进来 // dialogwrapper没有默认的无参构造方法,所以需要重写构造方法,它提供了很多重载构造方法, // 这里使用传project类型参数的构造方法,通过project对象可以获取当前idea内打开的项目的一些属性, // 比如项目名,项目路径等 public formtestdialog(@nullable project project) { super(project); settitle("表单测试"); // 设置会话框标题 this.projectname = project.getname(); } // 重写下面的方法,返回一个自定义的swing样式,该样式会展示在会话框的最上方的位置 @override protected jcomponent createnorthpanel() { return null; } // 重写下面的方法,返回一个自定义的swing样式,该样式会展示在会话框的最下方的位置 @override protected jcomponent createsouthpanel() { return null; } // 重写下面的方法,返回一个自定义的swing样式,该样式会展示在会话框的*位置 @override protected jcomponent createcenterpanel() { return null; } }
业务实践
获取文件差异
方案一:自建diff工具
为了获得代码目录与编译目录的文件差异,必然要使用到diff工具,这其中涉及到很多自定义的规则,比如差异文件是否要忽略等。优点是可以完全自定义灵活的识别差异的规则。缺点是耗时较久,毕竟要编写一套diff系统。时间比较紧,所以这个方案pass了。
方案二:使用jgit
jgit是java编写的一套git工具,通过java代码就可以调用到git的所有指令,可以完美解决获得文件差异的需求。但是经过实际测试发现,在调用git.status.call()
方法时 ,由于它需要初始化git,包括建立diff,filetree等操作,对于大仓库,一次运行就要十几秒,不能接受,故放弃。
git git = git.open(new file("~/source-code.temp-1/git")); status status = git.status().call(); //返回的值都是相对工作区的路径,而不是绝对路径 status.getadded().foreach(it -> system.out.println("add file :" + it)); //git add命令后会看到变化 status.getremoved().foreach(it -> system.out.println("remove file :" + it)); ///git rm命令会看到变化,从暂存区删除的文件列表 status.getmodified().foreach(it -> system.out.println("modified file :" + it)); //修改的文件列表 status.getuntracked().foreach(it -> system.out.println("untracked file :" + it)); //工作区新增的文件列表 status.getconflicting().foreach(it -> system.out.println("conflicting file :" + it)); //冲突的文件列表 status.getmissing().foreach(it -> system.out.println("missing file :" + it)); //工作区删除的文件列表
方案三:利用内存git
经过方案二,我们发现git是符合我们要求的,但是因为jgit要初始化,所以耗时较久。但是我们在运行idea的时候,在终端使用git status
非常快,是毫秒级,那我们完全可以利用内存中的git,直接执行git status
命令,在返回结果中去匹配文件差异。
通过让java执行git命令,可以达到毫秒级相应。
java执行shell命令并返回执行结果
/** * 执行shellcommand命令,获取命令的返回结果。在返回结果中,把符合条件的文件名放置到文件集合中 * * @param cmd shell命令 * @return 命令的输出结果 */ public static string executecommand(string[] cmd) throws ioexception { string resultstr = ""; // 利用runtime去执行shell命令 process ps = runtime.getruntime().exec(cmd); // 获取process对象的正常流和异常流 try (bufferedreader brinfo = new bufferedreader(new inputstreamreader(ps.getinputstream())); bufferedreader brerror = new bufferedreader(new inputstreamreader(ps.geterrorstream()))) { stringbuilder stringbuffer = new stringbuilder(); string line; // 读取输出结果,按照每行读取 if (brinfo.readline() != null) { while ((line = brinfo.readline()) != null) { stringbuffer.append(line).append("\n"); // 处理文件差异 filterfiles(line); } } else { // 如果正常输出流为null,那么就获取异常流 while ((line = brerror.readline()) != null) { stringbuffer.append(line).append("\n"); } } // 等待shell命令执行完成 ps.waitfor(); resultstr = stringbuffer.tostring(); } catch (exception e) { e.printstacktrace(); } // shell命令的返回结果 return resultstr; } // 在main函数中测试 public static void main(string[] args) { string cmd = "git status"; string resultstr = executecommand(new string[]{"/bin/sh", "-c", cmd}); system.out.println(resultstr); }
参考
到此这篇关于基于intellij idea/android studio插件开发指南(推荐)的文章就介绍到这了,更多相关idea android studio插件开发内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!