def publish(path, publish_path = None, force = False, rebuild = False): u'''将整个发布库进行编译''' do_link = False # 指定了第二个参数,则path一定是一个源库,第二个参数则是发布库,并自动进行link if publish_path: root_path = StaticPackage.get_root(path) path = publish_path # 发布整个库 do_link = True # 没有指定第二个参数,则path一定是一个发布库 else: publish_path, root_path = StaticPackage.get_roots(path) if not publish_path: ui.msg(u'No publish path.') else: package = StaticPackage(root_path, publish_path = publish_path) if not package.publish_path: ui.msg(u'No publish path.') else: ui.msg(u'publish to %s' % (path,) + (' with rebuild' if rebuild else '')) if rebuild: # 遍历磁盘目录,慢 all_files = package.get_publish_files() else: # 只搜索合并索引,快 all_files = package.listener.get_files() for filename in all_files: compile(filename, package = package, force = force, no_build_files = True) buildfiles(package = package) if do_link: package.link()
def link(path, link_path, force = False): u''' 将发布库与源库进行映射 如果库设置了url,则同时使用.package文件进行连接,需要工作区支持,如果没有url,则只进行本地连接。''' publish_path, root_path = StaticPackage.get_roots(path) if not publish_path and not root_path and link_path: publish_path, root_path = StaticPackage.get_roots(link_path) path, link_path = link_path, path if not publish_path: publish_path = os.path.realpath(link_path) else: root_path = os.path.realpath(link_path) if not root_path: ui.error('package not found') package = StaticPackage(root_path, publish_path = publish_path) if not os.path.exists(publish_path): if force: os.makedirs(publish_path) else: ui.msg(u'%s path not exists, run opm link path -f to create it.' % publish_path) return 1 package.link() ui.msg(u'linked publish %s to %s' % (publish_path, root_path))