This is an automated email from the ASF dual-hosted git repository. liujun pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/dubbo-rust.git
commit f72e75b3b635b023901ac63426e7d7c24ffefa7b Author: yang <[email protected]> AuthorDate: Mon Jun 27 21:48:32 2022 +0800 style(dubbo): add license header --- dubbo/src/common/mod.rs | 17 +++++++++++++++++ dubbo/src/common/url.rs | 17 +++++++++++++++++ dubbo/src/helloworld/client.rs | 17 +++++++++++++++++ dubbo/src/helloworld/helloworld.rs | 17 +++++++++++++++++ dubbo/src/helloworld/mod.rs | 17 +++++++++++++++++ dubbo/src/helloworld/server.rs | 16 ++++++++++++++++ dubbo/src/lib.rs | 17 +++++++++++++++++ dubbo/src/main.rs | 17 +++++++++++++++++ dubbo/src/service/grpc/grpc_exporter.rs | 17 +++++++++++++++++ dubbo/src/service/grpc/grpc_invoker.rs | 17 +++++++++++++++++ dubbo/src/service/grpc/grpc_protocol.rs | 17 +++++++++++++++++ dubbo/src/service/grpc/grpc_server.rs | 17 +++++++++++++++++ dubbo/src/service/grpc/mod.rs | 17 +++++++++++++++++ dubbo/src/service/invocation.rs | 17 +++++++++++++++++ dubbo/src/service/mod.rs | 17 +++++++++++++++++ dubbo/src/service/protocol.rs | 17 +++++++++++++++++ dubbo/src/utils/boxed.rs | 17 +++++++++++++++++ dubbo/src/utils/boxed_clone.rs | 17 +++++++++++++++++ dubbo/src/utils/mod.rs | 17 +++++++++++++++++ 19 files changed, 322 insertions(+) diff --git a/dubbo/src/common/mod.rs b/dubbo/src/common/mod.rs index 591151d..0bfd0ed 100644 --- a/dubbo/src/common/mod.rs +++ b/dubbo/src/common/mod.rs @@ -1 +1,18 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod url; diff --git a/dubbo/src/common/url.rs b/dubbo/src/common/url.rs index 6d4958d..e610de3 100644 --- a/dubbo/src/common/url.rs +++ b/dubbo/src/common/url.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + #[derive(Debug, Clone)] pub struct Url { pub url: String, diff --git a/dubbo/src/helloworld/client.rs b/dubbo/src/helloworld/client.rs index 591e382..5fd571d 100644 --- a/dubbo/src/helloworld/client.rs +++ b/dubbo/src/helloworld/client.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use dubbo::helloworld::helloworld::greeter_client::GreeterClient; use dubbo::helloworld::helloworld::HelloRequest; diff --git a/dubbo/src/helloworld/helloworld.rs b/dubbo/src/helloworld/helloworld.rs index 41eb5d9..2b2ef39 100644 --- a/dubbo/src/helloworld/helloworld.rs +++ b/dubbo/src/helloworld/helloworld.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + /// The request message containing the user's name. #[derive(Clone, PartialEq, ::prost::Message)] pub struct HelloRequest { diff --git a/dubbo/src/helloworld/mod.rs b/dubbo/src/helloworld/mod.rs index b1358dd..35bbf94 100644 --- a/dubbo/src/helloworld/mod.rs +++ b/dubbo/src/helloworld/mod.rs @@ -1 +1,18 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod helloworld; diff --git a/dubbo/src/helloworld/server.rs b/dubbo/src/helloworld/server.rs index e69de29..2944f98 100644 --- a/dubbo/src/helloworld/server.rs +++ b/dubbo/src/helloworld/server.rs @@ -0,0 +1,16 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ diff --git a/dubbo/src/lib.rs b/dubbo/src/lib.rs index 0e5bedf..f7cfaef 100644 --- a/dubbo/src/lib.rs +++ b/dubbo/src/lib.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod common; pub mod helloworld; pub mod service; diff --git a/dubbo/src/main.rs b/dubbo/src/main.rs index 4bb2acf..0dd0e47 100644 --- a/dubbo/src/main.rs +++ b/dubbo/src/main.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod common; pub mod helloworld; pub mod service; diff --git a/dubbo/src/service/grpc/grpc_exporter.rs b/dubbo/src/service/grpc/grpc_exporter.rs index 7671b6d..591064a 100644 --- a/dubbo/src/service/grpc/grpc_exporter.rs +++ b/dubbo/src/service/grpc/grpc_exporter.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use crate::service::protocol::Invoker; use crate::service::protocol::*; diff --git a/dubbo/src/service/grpc/grpc_invoker.rs b/dubbo/src/service/grpc/grpc_invoker.rs index 3fbd442..402e75a 100644 --- a/dubbo/src/service/grpc/grpc_invoker.rs +++ b/dubbo/src/service/grpc/grpc_invoker.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use std::sync::Once; use tonic::client::Grpc; diff --git a/dubbo/src/service/grpc/grpc_protocol.rs b/dubbo/src/service/grpc/grpc_protocol.rs index 8fe1aa8..4762abc 100644 --- a/dubbo/src/service/grpc/grpc_protocol.rs +++ b/dubbo/src/service/grpc/grpc_protocol.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use std::collections::HashMap; use super::grpc_exporter::GrpcExporter; diff --git a/dubbo/src/service/grpc/grpc_server.rs b/dubbo/src/service/grpc/grpc_server.rs index 9d2656e..3cc5294 100644 --- a/dubbo/src/service/grpc/grpc_server.rs +++ b/dubbo/src/service/grpc/grpc_server.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use std::collections::HashMap; use std::task::Context; use std::task::Poll; diff --git a/dubbo/src/service/grpc/mod.rs b/dubbo/src/service/grpc/mod.rs index 7c70105..91ee2c0 100644 --- a/dubbo/src/service/grpc/mod.rs +++ b/dubbo/src/service/grpc/mod.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod grpc_exporter; pub mod grpc_invoker; pub mod grpc_protocol; diff --git a/dubbo/src/service/invocation.rs b/dubbo/src/service/invocation.rs index 690a345..a0686b2 100644 --- a/dubbo/src/service/invocation.rs +++ b/dubbo/src/service/invocation.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use tonic::metadata::MetadataMap; pub struct Request<T> { diff --git a/dubbo/src/service/mod.rs b/dubbo/src/service/mod.rs index 49d23a4..753f567 100644 --- a/dubbo/src/service/mod.rs +++ b/dubbo/src/service/mod.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod grpc; pub mod invocation; pub mod protocol; diff --git a/dubbo/src/service/protocol.rs b/dubbo/src/service/protocol.rs index 3f42284..bec2b7f 100644 --- a/dubbo/src/service/protocol.rs +++ b/dubbo/src/service/protocol.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use super::invocation; use crate::common::url::Url; diff --git a/dubbo/src/utils/boxed.rs b/dubbo/src/utils/boxed.rs index e820031..326dea6 100644 --- a/dubbo/src/utils/boxed.rs +++ b/dubbo/src/utils/boxed.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use tower::ServiceExt; use tower_layer::{layer_fn, LayerFn}; use tower_service::Service; diff --git a/dubbo/src/utils/boxed_clone.rs b/dubbo/src/utils/boxed_clone.rs index dde8ec6..a4aa5ba 100644 --- a/dubbo/src/utils/boxed_clone.rs +++ b/dubbo/src/utils/boxed_clone.rs @@ -1,3 +1,20 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + use futures_util::future::BoxFuture; use std::{ fmt, diff --git a/dubbo/src/utils/mod.rs b/dubbo/src/utils/mod.rs index bd5e148..f088d72 100644 --- a/dubbo/src/utils/mod.rs +++ b/dubbo/src/utils/mod.rs @@ -1,2 +1,19 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache License, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + pub mod boxed; pub mod boxed_clone;
