skkhub 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
data/.document ADDED
@@ -0,0 +1,5 @@
1
+ README.rdoc
2
+ lib/**/*.rb
3
+ bin/*
4
+ features/**/*.feature
5
+ LICENSE
data/.gitignore ADDED
@@ -0,0 +1,21 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+
21
+ ## PROJECT::SPECIFIC
data/LICENSE ADDED
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2009 OHASHI Hideya
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
data/README.rdoc ADDED
@@ -0,0 +1,17 @@
1
+ = skkhub
2
+
3
+ Description goes here.
4
+
5
+ == Note on Patches/Pull Requests
6
+
7
+ * Fork the project.
8
+ * Make your feature addition or bug fix.
9
+ * Add tests for it. This is important so I don't break it in a
10
+ future version unintentionally.
11
+ * Commit, do not mess with rakefile, version, or history.
12
+ (if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
13
+ * Send me a pull request. Bonus points for topic branches.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2009 OHASHI Hideya. See LICENSE for details.
data/Rakefile ADDED
@@ -0,0 +1,45 @@
1
+ require 'rubygems'
2
+ require 'rake'
3
+
4
+ begin
5
+ require 'jeweler'
6
+ Jeweler::Tasks.new do |gem|
7
+ gem.name = "skkhub"
8
+ gem.summary = %Q{SKK server}
9
+ gem.description = %Q{SKK server}
10
+ gem.email = "ohachige@gmail.com"
11
+ gem.homepage = "http://github.com/ohac/skkhub"
12
+ gem.authors = ["OHASHI Hideya"]
13
+ gem.add_development_dependency "rspec", ">= 1.2.9"
14
+ # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
15
+ end
16
+ Jeweler::GemcutterTasks.new
17
+ rescue LoadError
18
+ puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
19
+ end
20
+
21
+ require 'spec/rake/spectask'
22
+ Spec::Rake::SpecTask.new(:spec) do |spec|
23
+ spec.libs << 'lib' << 'spec'
24
+ spec.spec_files = FileList['spec/**/*_spec.rb']
25
+ end
26
+
27
+ Spec::Rake::SpecTask.new(:rcov) do |spec|
28
+ spec.libs << 'lib' << 'spec'
29
+ spec.pattern = 'spec/**/*_spec.rb'
30
+ spec.rcov = true
31
+ end
32
+
33
+ task :spec => :check_dependencies
34
+
35
+ task :default => :spec
36
+
37
+ require 'rake/rdoctask'
38
+ Rake::RDocTask.new do |rdoc|
39
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
40
+
41
+ rdoc.rdoc_dir = 'rdoc'
42
+ rdoc.title = "skkhub #{version}"
43
+ rdoc.rdoc_files.include('README*')
44
+ rdoc.rdoc_files.include('lib/**/*.rb')
45
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.0.0
data/bin/skkhub ADDED
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env ruby1.9.1
2
+ # -*- coding: utf-8; -*-
3
+ self_file =
4
+ if File.symlink?(__FILE__)
5
+ require 'pathname'
6
+ Pathname.new(__FILE__).realpath
7
+ else
8
+ __FILE__
9
+ end
10
+ $:.unshift(File.dirname(self_file) + "/../lib")
11
+
12
+ require "skkhub"
13
+ SKKHub::run
data/lib/skkhub.rb ADDED
@@ -0,0 +1,127 @@
1
+ # -*- coding: utf-8 -*-
2
+ require "thread"
3
+ require "socket"
4
+
5
+ module SKKHub
6
+
7
+ class SKKServer
8
+
9
+ def mainloop
10
+ accept_clients do |s|
11
+ while cmdbuf = s.sysread(512)
12
+ t = case cmdbuf[0, 1]
13
+ when '1'
14
+ q = cmdbuf.split[0]
15
+ q.slice!(0)
16
+ q.force_encoding('EUC-JP')
17
+ a = yield(q.encode('UTF-8')).map{|i|i.encode('EUC-JP')}
18
+ a.empty? ? "4\n" : "1/#{a.join('/')}/\n"
19
+ when '2'
20
+ 'skkservtest-0.0.1 '
21
+ when '3'
22
+ 'host:ip: '
23
+ end
24
+ s.write(t)
25
+ end
26
+ end
27
+ end
28
+
29
+ def accept_clients
30
+ server = TCPServer.open(11178) # or 1178
31
+ loop do
32
+ s = server.accept
33
+ Thread.start(s) do |s2|
34
+ begin
35
+ yield(s2)
36
+ ensure
37
+ s2.shutdown
38
+ s2.close
39
+ end
40
+ end
41
+ end
42
+ end
43
+
44
+ end
45
+
46
+ class SKKSERVDic
47
+
48
+ def initialize(host, port)
49
+ @host, @port = host, port
50
+ end
51
+
52
+ def search(q)
53
+ get do |io|
54
+ io.syswrite("1#{q.encode('EUC-JP')} \n")
55
+ r, s = [io], ""
56
+ while IO.select(r)
57
+ s << io.sysread(512)
58
+ break if s[-1, 1] == "\n"
59
+ end
60
+ s.force_encoding('EUC-JP')
61
+ s[2..-3].split("/") if s[0, 1] == '1'
62
+ end
63
+ end
64
+
65
+ def get
66
+ io = TCPSocket.new(@host, @port)
67
+ a = yield io
68
+ io.shutdown
69
+ io.close
70
+ a
71
+ end
72
+
73
+ end
74
+
75
+ class EvalDic
76
+ def search(q)
77
+ e = eval(q) rescue nil
78
+ ["#{q} => #{e}"]
79
+ end
80
+ end
81
+
82
+ class WakarimasuDic
83
+ def search(q)
84
+ ["#{q}ですね。わかります。"]
85
+ end
86
+ end
87
+
88
+ class SocialIme
89
+ require 'net/http'
90
+ require 'timeout'
91
+
92
+ def search(q)
93
+ begin
94
+ kanji = nil
95
+ timeout(3) do
96
+ http = Net::HTTP.new('www.social-ime.com', 80)
97
+ http.start do |h|
98
+ res = h.get("/api/?string=#{URI.escape(q)}")
99
+ kanji = res.body.to_s.force_encoding('EUC-JP').encode('UTF-8').split("\n")
100
+ kanji = kanji.map{|s|s.split("\t")}
101
+ s = kanji.map(&:size)
102
+ kanji = s.reduce(&:*).times.map do |i|
103
+ m = s.map{|j|(i%j).tap{i=i/j}}
104
+ kanji.zip(m).map{|k,l|k[l]}.join
105
+ end
106
+ end
107
+ end
108
+ kanji
109
+ rescue
110
+ end
111
+ end
112
+
113
+ end
114
+
115
+ def self.run
116
+ dictset = [
117
+ SKKSERVDic.new('localhost', 1178),
118
+ #EvalDic.new,
119
+ #WakarimasuDic.new,
120
+ SocialIme.new,
121
+ ]
122
+ SKKServer.new.mainloop do |q|
123
+ dictset.map{|d|d.search(q)}.select{|s|!s.nil?}.flatten
124
+ end
125
+ end
126
+
127
+ end
data/run_skkhub.rb ADDED
@@ -0,0 +1,16 @@
1
+ #!/usr/bin/env ruby1.9.1
2
+ # -*- coding: utf-8 -*-
3
+
4
+ self_file =
5
+ if File.symlink?(__FILE__)
6
+ require 'pathname'
7
+ Pathname.new(__FILE__).realpath
8
+ else
9
+ __FILE__
10
+ end
11
+ $:.unshift(File.dirname(self_file) + "/lib")
12
+
13
+ require 'skkhub'
14
+ SKKHub::run
15
+
16
+ # Startup scripts for development
@@ -0,0 +1,7 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Skkhub" do
4
+ it "fails" do
5
+ fail "hey buddy, you should probably rename this file and start specing for real"
6
+ end
7
+ end
data/spec/spec.opts ADDED
@@ -0,0 +1 @@
1
+ --color
@@ -0,0 +1,9 @@
1
+ $LOAD_PATH.unshift(File.dirname(__FILE__))
2
+ $LOAD_PATH.unshift(File.join(File.dirname(__FILE__), '..', 'lib'))
3
+ require 'skkhub'
4
+ require 'spec'
5
+ require 'spec/autorun'
6
+
7
+ Spec::Runner.configure do |config|
8
+
9
+ end
metadata ADDED
@@ -0,0 +1,77 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: skkhub
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.0
5
+ platform: ruby
6
+ authors:
7
+ - OHASHI Hideya
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+
12
+ date: 2009-12-14 00:00:00 +09:00
13
+ default_executable: skkhub
14
+ dependencies:
15
+ - !ruby/object:Gem::Dependency
16
+ name: rspec
17
+ type: :development
18
+ version_requirement:
19
+ version_requirements: !ruby/object:Gem::Requirement
20
+ requirements:
21
+ - - ">="
22
+ - !ruby/object:Gem::Version
23
+ version: 1.2.9
24
+ version:
25
+ description: SKK server
26
+ email: ohachige@gmail.com
27
+ executables:
28
+ - skkhub
29
+ extensions: []
30
+
31
+ extra_rdoc_files:
32
+ - LICENSE
33
+ - README.rdoc
34
+ files:
35
+ - .document
36
+ - .gitignore
37
+ - LICENSE
38
+ - README.rdoc
39
+ - Rakefile
40
+ - VERSION
41
+ - bin/skkhub
42
+ - lib/skkhub.rb
43
+ - run_skkhub.rb
44
+ - spec/skkhub_spec.rb
45
+ - spec/spec.opts
46
+ - spec/spec_helper.rb
47
+ has_rdoc: true
48
+ homepage: http://github.com/ohac/skkhub
49
+ licenses: []
50
+
51
+ post_install_message:
52
+ rdoc_options:
53
+ - --charset=UTF-8
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: "0"
61
+ version:
62
+ required_rubygems_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: "0"
67
+ version:
68
+ requirements: []
69
+
70
+ rubyforge_project:
71
+ rubygems_version: 1.3.5
72
+ signing_key:
73
+ specification_version: 3
74
+ summary: SKK server
75
+ test_files:
76
+ - spec/skkhub_spec.rb
77
+ - spec/spec_helper.rb