wiki:TEXT_SERVER_R0

Version 10 (modified by kyli, 15 years ago) (diff)

--

Error: Macro BackLinksMenu(None) failed
compressed data is corrupt

Error: Macro TicketQuery(summary=TEXT_SERVER_R0, format=table, col=summary|owner|status|type|component|priority|effort|importance, rows=description|analysis_owners|analysis_reviewers|analysis_score|design_owners|design_reviewers|design_score|implementation_owners|implementation_reviewers|implementation_score|test_owners|test_reviewers|test_score|) failed
current transaction is aborted, commands ignored until end of transaction block

Analysis

Overview

The purpose of this task is to fix some of the bugs related to working with text on the server. Since real text collaboration will be hard to achieve, focus at this revision should be on the following things:

  • Character encoding
  • Caret position update

Task requirements

The following three bugs should be fixed as part of this task:

  • Books on server cannot contain text - exceptions are thrown (background) and changes are seen only by the author that made them. Fix this
  • Currently special characters on the server coming from a Windows machine are encoded as cp1251 or cp1252 instead of Unicode. Thus a strange symbol appears on a Unix client instead of a new line for example.
  • When two people work collaboratively on the server, text is updated, but caret position is not. Same is true when two views share the same model (e.g. save a book and reopen it). Last caret position should be updated together with the text.

Task result

Source code

Implementation idea

  • Unicode encoding on the server should fix the first problem.
  • The resource's raw text should be tracked and the TextChange should be extracted from the last AutoAction applied, so that the caret will be updated.

None

How to demo

Run the scenarios that describe the bugs (see the task requirements) and show they are no longer present.

Design

  • Books on server cannot contain text
    • ImmTextIntervalPersister is not registered as extension in BaseModelTextModule, so it cannot be used by the server. Registering the persister enables texts on server.
  • Windows encoding.
    • The problem is not in the server, it is in the way the client posts and reads data. OutputStreamWriter and InputStreamReader use the default system charset if nothing is specified. And their usage in MultiPartRequest must be as follows:
OutputStreamWriter writer = new OutputStreamWriter(
				this.connection.getOutputStream(), Charset.forName("UTF-8"));

and

			InputStreamReader input = new InputStreamReader(
					this.connection.getInputStream(), Charset.forName("UTF-8"));
  • Offline collaboration:
    • Create resource property named "<Your ad here!>" in ResourceTextModel. It will get the current resource revision of the associated text resource and its causing Change.
      • If the change is a ModelChange, search the action fields for a TextChange. If found, call update with it. If not, do nothing.
      • If the change is a MetaChange, create a TextStyleChange (interval - the whole text, style : HotStyleDef.empty()). update the model with it. The result is that the caret and selection are not changed. If the current caret index is in the text, it will stay there. If not, it will automatically be displayed in the text end.
  • Online collaboration:
    • Extend the property in ResourceTextModel. Keep internally a list of ResourceRevisions. All the incoming revisions should be added subsequently to that list. In the case when the access to the text resource is a DelegatingServerAccess one, write a new logic for the property - when a change occurs:
      • Find the last resource revision id in the resource that is contained in our list.

Implementation

Describe and link the implementation results here (from the wiki or the repository).

Testing

Place the testing results here.

Comments

Write comments for this or later revisions here.