mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2024-11-16 19:50:35 +01:00
150 lines
4.8 KiB
Ruby
150 lines
4.8 KiB
Ruby
require 'rake/clean'
|
|
require 'fileutils'
|
|
require_relative 'lib/lib_src_file.rb'
|
|
require_relative 'lib/lib_src2md.rb'
|
|
require_relative 'lib/lib_gen_main_tex.rb'
|
|
require_relative 'lib/lib_add_head_tail_html.rb'
|
|
|
|
secfiles = Sec_files.new(FileList['src/sec*.src.md'].to_a.map{|file| Sec_file.new(file)})
|
|
secfiles.renum!
|
|
otherfiles = ["src/turtle/turtle_doc.src.md",
|
|
"src/tfetextview/tfetextview_doc.src.md",
|
|
"src/Readme_for_developers.src.md"].map {|file| Src_file.new file}
|
|
srcfiles = secfiles + otherfiles
|
|
abstract = Src_file.new "src/abstract.src.md"
|
|
|
|
mdfiles = srcfiles.map {|file| "gfm/" + file.to_md}
|
|
htmlfiles = srcfiles.map {|file| "html/" + file.to_html}
|
|
sectexfiles = secfiles.map {|file| "latex/" + file.to_tex}
|
|
othertexfiles = otherfiles.map {|file| "latex/" + file.to_tex}
|
|
texfiles = sectexfiles + othertexfiles
|
|
abstract_tex = "latex/"+abstract.to_tex
|
|
|
|
["gfm", "html", "latex"].each{|d| Dir.mkdir(d) unless Dir.exist?(d)}
|
|
|
|
CLEAN.append(*mdfiles)
|
|
CLEAN << "Readme.md"
|
|
|
|
def pair array1, array2
|
|
n = [array1.size, array2.size].max
|
|
(0...n).map{|i| [array1[i], array2[i], i]}
|
|
end
|
|
|
|
# tasks
|
|
|
|
task default: :md
|
|
task all: [:md, :html, :pdf]
|
|
|
|
task md: %w[Readme.md] + mdfiles
|
|
|
|
file "Readme.md" => [abstract] + secfiles do
|
|
src2md abstract, abstract.to_md, "gfm"
|
|
buf = [ "# Gtk4 Tutorial for beginners\n", "\n" ]\
|
|
+ File.readlines(abstract.to_md)\
|
|
+ ["\n", "## Table of contents\n", "\n"]
|
|
File.delete(abstract.to_md)
|
|
secfiles.each_with_index do |secfile, i|
|
|
h = File.open(secfile.path){|file| file.readline}.sub(/^#* */,"").chomp
|
|
buf << "1. [#{h}](gfm/#{secfile.to_md})\n"
|
|
end
|
|
File.write("Readme.md", buf.join)
|
|
end
|
|
|
|
# srcfiles => mdfiles
|
|
pair(srcfiles, mdfiles).each do |src, dst, i|
|
|
file dst => [src] + src.c_files do
|
|
src2md src, dst, "gfm"
|
|
if src.instance_of? Sec_file
|
|
if secfiles.size == 1
|
|
nav = "Up: [Readme.md](../Readme.md)\n"
|
|
elsif i == 0
|
|
nav = "Up: [Readme.md](../Readme.md), Next: [Section 2](#{secfiles[1].to_md})\n"
|
|
elsif i == secfiles.size - 1
|
|
nav = "Up: [Readme.md](../Readme.md), Prev: [Section #{i}](#{secfiles[i-1].to_md})\n"
|
|
else
|
|
nav = "Up: [Readme.md](../Readme.md), Prev: [Section #{i}](#{secfiles[i-1].to_md}), Next: [Section #{i+2}](#{secfiles[i+1].to_md})\n"
|
|
end
|
|
File.write(dst, nav + "\n" + File.read(dst) + "\n" + nav)
|
|
end
|
|
end
|
|
end
|
|
|
|
task html: %w[html/index.html] + htmlfiles
|
|
|
|
file "html/index.html" => [abstract] + secfiles do
|
|
abstract_md = "html/#{abstract.to_md}"
|
|
src2md abstract, abstract_md, "html"
|
|
buf = ["# Gtk4 Tutorial for beginners\n", "\n"]\
|
|
+ File.readlines(abstract_md)\
|
|
+ ["\n", "## Table of contents\n", "\n"]
|
|
File.delete(abstract_md)
|
|
secfiles.each_with_index do |secfile, i|
|
|
h = File.open(secfile.path){|file| file.readline}.sub(/^#* */,"").chomp
|
|
buf << "1. [#{h}](#{secfile.to_html})\n"
|
|
end
|
|
File.write("html/index.md", buf.join)
|
|
sh "pandoc -o html/index.html html/index.md"
|
|
File.delete "html/index.md"
|
|
add_head_tail_html "html/index.html"
|
|
end
|
|
|
|
pair(srcfiles, htmlfiles).each do |src, dst, i|
|
|
file dst => [src] + src.c_files do
|
|
html_md = "html/#{src.to_md}"
|
|
src2md src, html_md, "html"
|
|
if src.instance_of? Sec_file
|
|
if secfiles.size == 1
|
|
nav = "Up: [index.html](index.html)\n"
|
|
elsif i == 0
|
|
nav = "Up: [index.html](index.html), Next: [Section 2](#{secfiles[1].to_html})\n"
|
|
elsif i == secfiles.size - 1
|
|
nav = "Up: [index.html](index.html), Prev: [Section #{i}](#{secfiles[i-1].to_html})\n"
|
|
else
|
|
nav = "Up: [index.html](index.html), Prev: [Section #{i}](#{secfiles[i-1].to_html}), Next: [Section #{i+2}](#{secfiles[i+1].to_html})\n"
|
|
end
|
|
File.write(html_md, nav + "\n" + File.read(html_md) + "\n" + nav)
|
|
end
|
|
sh "pandoc -o #{dst} #{html_md}"
|
|
File.delete(html_md)
|
|
add_head_tail_html dst
|
|
end
|
|
end
|
|
|
|
task pdf: %w[latex/main.tex] do
|
|
sh "cd latex; lualatex main.tex"
|
|
sh "cd latex; lualatex main.tex"
|
|
sh "mv latex/main.pdf latex/gtk4_tutorial.pdf"
|
|
end
|
|
|
|
file "latex/main.tex" => [abstract_tex] + texfiles do
|
|
gen_main_tex "latex", abstract.to_tex, sectexfiles, othertexfiles
|
|
end
|
|
|
|
file abstract_tex => abstract do
|
|
abstract_md = "latex/"+abstract.to_md
|
|
src2md abstract, abstract_md, "latex"
|
|
sh "pandoc --listings -o #{abstract_tex} #{abstract_md}"
|
|
File.delete(abstract_md)
|
|
end
|
|
|
|
pair(srcfiles, texfiles).each do |src, dst, i|
|
|
file dst => [src] + src.c_files do
|
|
tex_md = "latex/#{src.to_md}"
|
|
src2md src, tex_md, "latex"
|
|
if src == "src/Readme_for_developers.src.md"
|
|
sh "pandoc -o #{dst} #{tex_md}"
|
|
else
|
|
sh "pandoc --listings -o #{dst} #{tex_md}"
|
|
end
|
|
File.delete(tex_md)
|
|
end
|
|
end
|
|
|
|
task :clean
|
|
task :cleanhtml do
|
|
remove_entry_secure('html') if Dir.exist?('html')
|
|
end
|
|
task :cleanlatex do
|
|
remove_entry_secure('latex') if Dir.exist?('latex')
|
|
end
|
|
task cleanall: [:clean, :cleanhtml, :cleanlatex]
|